DLConfig.h
299 Bytes
#ifndef DL_CONFIG_H
#define DL_CONFIG_H
#include "stdafx.h"
class CDLConfig
{
public:
CDLConfig();
~CDLConfig();
bool ReadConfig();
private:
CString GetModulePath();
public:
std::string m_sPWMIP;
uint32_t m_u32PWMPort;
std::string m_sHost;
uint16_t m_u16Port;
bool m_bUsePWM;
};
#endif