2020-05-08 12:42:02 +02:00
|
|
|
#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();
|
2020-05-13 00:56:26 +02:00
|
|
|
bool exist_file();
|
2020-05-08 12:42:02 +02:00
|
|
|
private:
|
|
|
|
std::ifstream file;
|
|
|
|
std::string short_name;
|
|
|
|
bool exist;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // READ_USES_H
|