summaryrefslogtreecommitdiff
path: root/server-tools/instance-manager/IMService.h
diff options
context:
space:
mode:
Diffstat (limited to 'server-tools/instance-manager/IMService.h')
-rw-r--r--server-tools/instance-manager/IMService.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/server-tools/instance-manager/IMService.h b/server-tools/instance-manager/IMService.h
new file mode 100644
index 00000000000..60c202fc561
--- /dev/null
+++ b/server-tools/instance-manager/IMService.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "windowsservice.h"
+
+class IMService : public WindowsService
+{
+public:
+ IMService(void);
+ ~IMService(void);
+
+protected:
+ void Log(const char *msg);
+ void Stop();
+ void Run();
+};