26 lines
386 B
C++
26 lines
386 B
C++
#ifndef ETW_LMM_HPP
|
|
#define ETW_LMM_HPP
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
class ETW_LMM
|
|
{
|
|
public:
|
|
ETW_LMM(int argc, char **argv);
|
|
unsigned int execute();
|
|
private:
|
|
std::vector<std::string> _args;
|
|
std::string _hd;
|
|
|
|
void _set_homedir();
|
|
void _help();
|
|
void _menu();
|
|
void _list();
|
|
void _calibrate();
|
|
void _install();
|
|
void _uninstall(const std::string&);
|
|
};
|
|
|
|
#endif
|