mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
21 lines
282 B
C++
21 lines
282 B
C++
|
#include "LaunchMethod.h"
|
||
|
|
||
|
LaunchMethod::LaunchMethod()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
LaunchMethod::~LaunchMethod()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void LaunchMethod::GetOptions(boost::program_options::options_description &desc)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
bool LaunchMethod::CheckOptions(boost::program_options::variables_map &options)
|
||
|
{
|
||
|
return true;
|
||
|
}
|