15 lines
207 B
C
15 lines
207 B
C
|
#ifndef LOGIC_HEADER
|
||
|
#define LOGIC_HEADER
|
||
|
|
||
|
#include "public.hpp"
|
||
|
|
||
|
class CMainLogic
|
||
|
{
|
||
|
public:
|
||
|
CMainLogic() = default;
|
||
|
~CMainLogic() = default;
|
||
|
public:
|
||
|
bool run(const CmdResult& result);
|
||
|
};
|
||
|
|
||
|
#endif
|