PackBinary/logic.h

15 lines
207 B
C
Raw Normal View History

2024-10-27 15:51:46 +08:00
#ifndef LOGIC_HEADER
#define LOGIC_HEADER
#include "public.hpp"
class CMainLogic
{
public:
CMainLogic() = default;
~CMainLogic() = default;
public:
bool run(const CmdResult& result);
};
#endif