You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
404 B
C++
25 lines
404 B
C++
#ifndef _LPCONFIG_H_
|
|
#define _LPCONFIG_H_
|
|
|
|
#include <QObject>
|
|
#include "lp_singleton_base.h"
|
|
class lpConfig : public lp_singleton_base<lpConfig>
|
|
{
|
|
|
|
public:
|
|
lpConfig();
|
|
~lpConfig();
|
|
|
|
void saveConfig();
|
|
void loadConfig();
|
|
|
|
public:
|
|
int portA{ 10110 };//A꿋묏貫websocket 졍쌈
|
|
int portB{ 10112 };
|
|
QString appPathA;
|
|
QString appPathB;
|
|
bool doubleStation{ true };//true 崗묏貫 ; false 데묏貫
|
|
|
|
};
|
|
|
|
#endif |