Files
Sun1602/Server/ShopServer/JobCommand.h
T
2022-10-26 12:25:11 +08:00

12 lines
165 B
C++

#pragma once
#include "ShopDBProc.h"
#include "ShopJobQueue.h"
class CJobCommand
{
public:
virtual void Execute(CShopDBProc* pDBProc, CShopJobBase* job) = 0;
};