initial implementation

This commit is contained in:
Roland Conybeare 2023-10-18 12:06:07 -04:00
commit 1078c49269
30 changed files with 2131 additions and 0 deletions

View file

@ -0,0 +1,15 @@
/* @file UpxToConsole.cpp */
#include "UpxToConsole.hpp"
namespace xo {
namespace process {
ref::rp<UpxToConsole>
UpxToConsole::make()
{
return new UpxToConsole();
} /*make*/
UpxToConsole::UpxToConsole() = default;
} /*namespace process*/
} /*namespace xo*/