Listing 6 Definition of parse node Pif

_CLASSDEF(Pif)
class _CLASSTYPE Pif
{
public:
   Pif(){}
   ~Pif(){}
   BOOL parse();                // parse function
   int write(int,const char*);  // output function
                           // to a pseudo file
};

// End of File