20 lines
347 B
C
20 lines
347 B
C
|
|
#ifndef DISTRIBUTION_SERVICE_CONFIG_H
|
||
|
|
#define DISTRIBUTION_SERVICE_CONFIG_H
|
||
|
|
|
||
|
|
#include "CCSystem.h"
|
||
|
|
|
||
|
|
class Config {
|
||
|
|
public:
|
||
|
|
CTL::String IP = "0.0.0.0";
|
||
|
|
int OrderPort = 10060;
|
||
|
|
int StreamPort = 10062;
|
||
|
|
int HttpPort = 9090;
|
||
|
|
bool Flag = false;
|
||
|
|
private:
|
||
|
|
public:
|
||
|
|
static Config* getConfig();
|
||
|
|
static bool IsRunning();
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|