Initial import of the CDE 2.1.30 sources from the Open Group.
This commit is contained in:
26
cde/programs/dtinfo/dtinfogen/infolib/etc/BTCollectable.h
Normal file
26
cde/programs/dtinfo/dtinfogen/infolib/etc/BTCollectable.h
Normal file
@@ -0,0 +1,26 @@
|
||||
/* $XConsortium: BTCollectable.h /main/2 1996/07/18 16:39:46 drk $ */
|
||||
|
||||
#ifndef BT_COLLECT
|
||||
#define BT_COLLECT
|
||||
|
||||
class BTCollectable
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
BTCollectable();
|
||||
BTCollectable( const char *filename, int line_no, const char *val=NULL );
|
||||
~BTCollectable();
|
||||
|
||||
char *filename() { return(f_name); }
|
||||
int linenum() { return(line_num); }
|
||||
char *get_value() { return( value ); }
|
||||
|
||||
private:
|
||||
char *f_name;
|
||||
int line_num;
|
||||
char *value;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user