mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-22 13:23:23 +08:00
25 lines
436 B
C++
25 lines
436 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
typedef std::vector< std::string > ArgsList;
|
|
|
|
struct Options
|
|
{
|
|
int pyMajorVersion;
|
|
int pyMinorVersion;
|
|
bool global;
|
|
bool showHelp;
|
|
std::vector<std::string> args;
|
|
|
|
Options() :
|
|
pyMajorVersion(-1),
|
|
pyMinorVersion(-1),
|
|
global(true),
|
|
showHelp(false)
|
|
{}
|
|
|
|
Options(const std::string& cmdline);
|
|
};
|