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.
21 lines
354 B
C++
21 lines
354 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" };
|
|
};
|
|
|
|
#endif |