Fix change_fit_action shortcut regression

This commit is contained in:
Felix Kauselmann
2016-02-18 21:21:03 +01:00
commit 23e6977035
961 changed files with 82308 additions and 0 deletions

View File

@ -0,0 +1,34 @@
/**
@file
@author Stefan Frings
*/
#ifndef STARTUP_H
#define STARTUP_H
#include <QString>
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();
QString getPort();
protected:
};
#endif // STARTUP_H