PackBinary/pack.h

15 lines
215 B
C
Raw Normal View History

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