Heart/ServerProtocol/serverutils.h
2019-10-08 13:03:13 +03:00

22 lines
416 B
C++

#ifndef SERVERUTILS_H
#define SERVERUTILS_H
#include "serverprotocol_global.h"
class SERVERPROTOCOLSHARED_EXPORT ServerUtils
{
public:
ServerUtils();
static void helpDaemon();
static void helpClient();
/**
* @brief runDaemon
* @return true if app running like a daemon
*/
static bool runDaemon();
static bool parseParams(int argc, char *argv[]);
};
#endif // SERVERUTILS_H