This repository has been archived on 2021-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
modetw/include/etw_lmm.hpp

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