mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 05:24:57 -04:00
modificado el script de mac os x para generar un .dmg
This commit is contained in:
30
YACReaderLibrary/server/startup.h
Normal file
30
YACReaderLibrary/server/startup.h
Normal file
@ -0,0 +1,30 @@
|
||||
/**
|
||||
@file
|
||||
@author Stefan Frings
|
||||
*/
|
||||
|
||||
#ifndef STARTUP_H
|
||||
#define STARTUP_H
|
||||
|
||||
class HttpListener;
|
||||
/**
|
||||
Helper class to install and run the application as a windows
|
||||
service.
|
||||
*/
|
||||
class Startup
|
||||
{
|
||||
private:
|
||||
//QTcpServer
|
||||
HttpListener * listener;
|
||||
public:
|
||||
|
||||
/** Constructor */
|
||||
Startup();
|
||||
/** Start the server */
|
||||
void start();
|
||||
/** Stop the server */
|
||||
void stop();
|
||||
protected:
|
||||
};
|
||||
|
||||
#endif // STARTUP_H
|
Reference in New Issue
Block a user