home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / autopsp.zip / LOC / OI.H < prev    next >
C/C++ Source or Header  |  1994-01-23  |  905b  |  35 lines

  1. // CObjectInfo
  2. //
  3. //  Class to hold object information
  4. //    We need a list of these, each of which holds a list of
  5. //   file names.
  6.  
  7. #include "e:\pspsrc\LList.h"
  8.  
  9.                                   // File name structure
  10. typedef struct {
  11.   char FileName[35];
  12. }FN;
  13.                                   // Object information class
  14. class CObjectInfo : private LList
  15. {
  16.   public:
  17.   CObjectInfo(void);
  18.  
  19.   void  AddFile  (char *filename);
  20.   int   Count_OLOC(void);         // Counts LOC in all it's files and
  21.                                   //   stores value localy and returns value
  22.   void  Print_OLOC(FILE *out);
  23.   void  YourNameIs(char *name);
  24.   char *WhatIsYourName(void);
  25. //                Quest...
  26. //                Favorite Color...
  27.  
  28.   private:
  29.   int  OLOC;
  30.   int  ONUMC;
  31.   int  OMTHD;
  32.   char ObjectName[35];            // C++ only uniquely identifys at 32 by default
  33. };
  34.  
  35.