Changeset 3323 for trunk/tools
- Timestamp:
- Apr 5, 2000, 8:45:21 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/dbginfo/kHll.h
r3287 r3323 1 /* $Id: kHll.h,v 1. 5 2000-03-31 15:47:38bird Exp $1 /* $Id: kHll.h,v 1.6 2000-04-05 18:45:21 bird Exp $ 2 2 * 3 3 * kHll - Declarations of the class kHll. … … 65 65 66 66 67 68 /** 69 * HLL Source entry. 70 * @shortdesc 71 * @dstruct 72 * @version 73 * @verdesc 74 * @author knut st. osmundsen (knut.stange.osmundsen@pmsc.no) 75 * @approval 76 */ 67 77 class kHllSrcEntry 68 78 { 69 79 private: 70 71 public: 72 80 int cFilenames; 81 char * pchFilenames; 82 83 int cLines; 84 HLLLINENUMBERENTRY paLines; 85 86 public: 87 88 ~kHllSrcEntry(); 89 90 BOOL addLineInfo( 91 int iFile, 92 int iLine, 93 unsigned short int iObject, 94 unsigned long int off 95 ); 96 int addFile( 97 const char * pszFilename, 98 99 ); 100 101 int write(FILE *phFile); 73 102 }; 74 103
Note:
See TracChangeset
for help on using the changeset viewer.