19 lines
342 B
C++
19 lines
342 B
C++
#ifndef PUBLIC_HEADER
|
|
#define PUBLIC_HEADER
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
struct CmdResult {
|
|
std::string binary;
|
|
std::string purpose_dir;
|
|
std::string ico;
|
|
std::string category;
|
|
std::vector<std::string> lib_dirs;
|
|
bool valid{false};
|
|
int mode{-1};
|
|
bool help_{false};
|
|
bool only_shell{false};
|
|
};
|
|
|
|
#endif |