/************************************************ * * Matthew Page * * 11/11/2014 * CSCS 1320 * * node.h - a header file for something * * * *********************************************/ #ifndef _NODE_H //if not defined, (if it's not included use this, if not skip it.) #define _NODE_H #include class Node { public: Node(); //constructor Node(int); //2nd constructor void setValue(int); //accessor functions to access the private variable value. int getValue(); //accessor functions private: int value; }; #endif //ending ifndef (if not defined)