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.
24 lines
421 B
C++
24 lines
421 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:
|
|
QString strUrlA{ "ws://localhost:10110" };//A²à¹¤Î»websocket Á´½Ó
|
|
QString strUrlB{ "ws://localhost:10110" };
|
|
QString appPathA;
|
|
QString appPathB;
|
|
bool doubleStation{ true };
|
|
};
|
|
|
|
#endif |