mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-18 23:51:28 +00:00
20 lines
383 B
C++
20 lines
383 B
C++
#pragma once
|
|
|
|
#include "../../common/service.h"
|
|
|
|
namespace EQ
|
|
{
|
|
class TasksService : public EQ::Service
|
|
{
|
|
public:
|
|
TasksService();
|
|
virtual ~TasksService();
|
|
|
|
protected:
|
|
virtual void OnStart();
|
|
virtual void OnStop();
|
|
virtual void OnHeartbeat(double time_since_last);
|
|
virtual void OnRoutedMessage(const std::string& identifier, int type, const EQ::Net::Packet& p);
|
|
};
|
|
}
|