00001 // Parenth.hpp - Parenthesis Checking Class Interface 00002 00003 #ifndef __PARENTH_HPP__ // Is it defined already !? 00004 #define __PARENTH_HPP__ 00005 00006 #include "../Const.hpp" // All the constants 00007 #include "DBase.hpp" // ID, Name & Tel information class 00008 #include "Stack.hpp" // Stack using Single Link Nodes class 00009 00010 class Parenth { 00011 00012 public: 00013 00014 Parenth() { }; // Default Construtor 00015 00016 // No COPY CONSTRUCTOR needed. 00017 00018 virtual ~Parenth() { }; // Destructor 00019 00020 int read(const char* datafile); // Read and scan a datafile 00021 00022 private: 00023 00024 }; 00025 00026 #endif // __PARENTH_HPP__