8 lines
178 B
C++
8 lines
178 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
enum class LAUNCH_MODE { HELP, INSTALL, UNINSTALL, LIST, RUN };
|
|
|
|
LAUNCH_MODE launch_mode(const char* str);
|
|
bool home_directory(std::string& str);
|