PackBinary/install.h

16 lines
234 B
C
Raw Permalink Normal View History

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