Changeset 3323 for trunk/tools


Ignore:
Timestamp:
Apr 5, 2000, 8:45:21 PM (25 years ago)
Author:
bird
Message:

Temp checkin.

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:38 bird Exp $
     1/* $Id: kHll.h,v 1.6 2000-04-05 18:45:21 bird Exp $
    22 *
    33 * kHll - Declarations of the class kHll.
     
    6565
    6666
     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 */
    6777class kHllSrcEntry
    6878{
    6979private:
    70 
    71 public:
    72 
     80    int                 cFilenames;
     81    char *              pchFilenames;
     82
     83    int                 cLines;
     84    HLLLINENUMBERENTRY  paLines;
     85
     86public:
     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);
    73102};
    74103
Note: See TracChangeset for help on using the changeset viewer.