#include #ifndef VERTEX_H #define VERTEX_H class Vertex { public: Vertex(); // default constructor Vertex(int id); Vertex(int id, string name); ~Vertex(); // destructor int getId(); //get the ID of the vertex string getName(); //get the name of the vertex string getOutput(); void setId(int newId); void setName(string &newName); void setOutput(string &newOutput); void printInfo(); //private: int id; // id of the vertex string name; // name of the vertex string output; }; #endif VERTEX_H