1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-12 20:49:12 +03:00
Files
mariadb/server-tools/instance-manager/IMService.h
2005-08-05 17:09:02 +04:00

15 lines
204 B
C++

#pragma once
#include "windowsservice.h"
class IMService : public WindowsService
{
public:
IMService(void);
~IMService(void);
protected:
void Log(const char *msg);
void Stop();
void Run();
};