#ifndef READ_USES_H #define READ_USES_H #include <string> #include <fstream> #include <list> class read_uses { public: read_uses(std::string name); std::string* get_uses(); bool exist_file(); private: std::ifstream file; std::string short_name; bool exist; }; #endif // READ_USES_H