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/phase_general.hpp

15 lines
189 B
C++

#ifndef PHASE_GENERAL_HPP
#define PHASE_GENERAL_HPP
#include <string>
class phase_general
{
public:
void set_homedir(const char*);
protected:
static std::string __homedir;
};
#endif