#ifndef GRAPH_H
#define GRAPH_H

#include <fstream>
#include <vector>
#include <string>

class Graph{
int nodes;
int **access;
std::ofstream fo;
std::ifstream fi;
std::string makeGraphCommand;
std::string filename;

public:
    Graph();
    Graph(int _nodes, int **_access, std::vector<std::string> _TPTP_commands);

    void makeGraphCommands(std::string name);

    void makeGraphImage();
    std::string getMakeGraphCommand();
};

#endif // GRAPH_H