]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/store/postgresql/postgresql_store.h
Implemented daily fee charge with backward compatibility.
[stg.git] / projects / stargazer / plugins / store / postgresql / postgresql_store.h
index 8169137e4d6776de2394ce66266d443dcb047ab1..a88df88b93fba855bb1d4d612d39254e2e5d9012 100644 (file)
@@ -43,6 +43,8 @@
 
 extern "C" STORE * GetStore();
 
+class STG_LOGGER;
+
 class POSTGRESQL_STORE : public STORE {
 public:
     POSTGRESQL_STORE();
@@ -121,6 +123,9 @@ public:
     inline const string & GetStrError() const { return strError; };
     inline const string & GetVersion() const { return versionString; };
 private:
+    POSTGRESQL_STORE(const POSTGRESQL_STORE & rvalue);
+    POSTGRESQL_STORE & operator=(const POSTGRESQL_STORE & rvalue);
+
     int StartTransaction() const;
     int CommitTransaction() const;
     int RollbackTransaction() const;
@@ -155,6 +160,8 @@ private:
     int retries;
 
     PGconn * connection;
+
+    STG_LOGGER & WriteServLog;
 };
 
 extern const volatile time_t stgTime;