16 lines
234 B
C++
16 lines
234 B
C++
#ifndef INSTALL_HEADER
|
|
#define INSTALL_HEADER
|
|
|
|
#include "public.hpp"
|
|
|
|
class CInstallBinary
|
|
{
|
|
public:
|
|
CInstallBinary() = default;
|
|
~CInstallBinary() = default;
|
|
public:
|
|
bool startInstall(const CmdResult& result);
|
|
};
|
|
|
|
|
|
#endif |