]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/sgconfig/stgconfig.h
Rearranged some headers in sgconfig.
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / stgconfig.h
index 7e3ae69b9ab55b5b5d5feb5af421be8852a377d2..a3da389525f553463467e1c29104898329509d80 100644 (file)
 #include "stg/logger.h"
 #include "configproto.h"
 
-extern "C" PLUGIN * GetPlugin();
-
-class STG_CONFIG;
-
 class STG_CONFIG_SETTINGS {
 public:
                     STG_CONFIG_SETTINGS() : errorStr(), port(0) {}
@@ -23,13 +19,13 @@ public:
     uint16_t        GetPort() const { return port; }
 private:
     std::string errorStr;
-    int     port;
+    uint16_t    port;
 };
 //-----------------------------------------------------------------------------
 class STG_CONFIG :public PLUGIN {
 public:
     STG_CONFIG();
-    virtual ~STG_CONFIG(){};
+    virtual ~STG_CONFIG(){}
 
     void                SetUsers(USERS * u) { users = u; }
     void                SetTariffs(TARIFFS * t) { tariffs = t; }
@@ -45,7 +41,7 @@ public:
     bool                IsRunning() { return isRunning; }
 
     const std::string & GetStrError() const { return errorStr; }
-    const std::string   GetVersion() const;
+    std::string         GetVersion() const;
     uint16_t            GetStartPosition() const { return 20; }
     uint16_t            GetStopPosition() const { return 20; }