X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/32248221316271f3a09a771ce35b77236f4bbeed..81b359cdaff64a514ddfff9f86e398d0d37c06d1:/include/stg/services.h

diff --git a/include/stg/services.h b/include/stg/services.h
index 131e2b55..8c49f781 100644
--- a/include/stg/services.h
+++ b/include/stg/services.h
@@ -21,17 +21,20 @@
 #ifndef SERVICES_H
 #define SERVICES_H
 
+#include "service_conf.h"
+
 #include <string>
 
-#include "service_conf.h"
+class ADMIN;
 
 class SERVICES {
 public:
-    virtual int Add(const SERVICE_CONF & service) = 0;
-    virtual int Del(const std::string & name) = 0;
-    virtual int Change(const SERVICE_CONF & service) = 0;
-    virtual bool FindService(const std::string & name, SERVICE_CONF & service) = 0;
-    virtual bool ServiceExists(const std::string & name) const = 0;
+    virtual ~SERVICES() {}
+    virtual int Add(const SERVICE_CONF & service, const ADMIN * admin) = 0;
+    virtual int Del(const std::string & name, const ADMIN * admin) = 0;
+    virtual int Change(const SERVICE_CONF & service, const ADMIN * admin) = 0;
+    virtual bool Find(const std::string & name, SERVICE_CONF * service) = 0;
+    virtual bool Exists(const std::string & name) const = 0;
     virtual const std::string & GetStrError() const = 0;
     virtual size_t Count() const = 0;