#ifndef FILE_H
#define FILE_H

#include <string>

using namespace std;

class File 
{
public:
    File(string path);
    File(const File& orig);
    virtual ~File();
    
    bool exists();
    string read();
private:
    string path;
};

#endif