Changeset 8003 for trunk/tools/common/kFileSDF.h
- Timestamp:
- Feb 24, 2002, 3:47:28 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/common/kFileSDF.h
r5534 r8003 1 /* $Id: kFileSDF.h,v 1. 1 2001-04-17 04:16:03bird Exp $1 /* $Id: kFileSDF.h,v 1.2 2002-02-24 02:47:27 bird Exp $ 2 2 * 3 3 * kFileSDF- Structure Defintion File class declaration. … … 68 68 * @author knut st. osmundsen (knut.stange.osmundsen@mynd.no) 69 69 */ 70 class kFileSDF : public kFileFormatBase 70 class kFileSDF : public kFileFormatBase, public kDbgTypeI 71 71 { 72 72 private: … … 75 75 PSDFTYPE paTypes; 76 76 77 void parseSDFFile(void *pvFile) throw (int);77 void parseSDFFile(void *pvFile) throw (kError); 78 78 PSDFTYPE getType(const char *pszType); 79 79 PSDFSTRUCT getStruct(const char *pszStruct); 80 80 81 81 public: 82 kFileSDF(kFile *pFile) throw (int);82 kFileSDF(kFile *pFile) throw (kError); 83 83 ~kFileSDF(); 84 84 85 BOOL dump(kFile *pOut); 85 /** @cat Debug Type information methods. */ 86 kDbgTypeEntry * dbgtypeFindFirst(int flFlags); 87 kDbgTypeEntry * dbgtypeFindNext(kDbgTypeEntry *kDbgTypeEntry); 88 void dbgtypeFindClose(kDbgTypeEntry *kDbgTypeEntry); 89 90 kDbgTypeEntry * dbgtypeLookup(const char *pszName, int flFlags); 91 92 /** @cat Generic dump */ 93 KBOOL dump(kFile *pOut); 86 94 }; 95
Note:
See TracChangeset
for help on using the changeset viewer.