Add 'xo-process/' from commit '7cfc560f02'

git-subtree-dir: xo-process
git-subtree-mainline: abd08e3491
git-subtree-split: 7cfc560f02
This commit is contained in:
Roland Conybeare 2025-05-11 16:10:34 -05:00
commit 2450ab4ed9
33 changed files with 2406 additions and 0 deletions

View file

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