Link to: source code | other
interface directory
Copyright Turtle Creek Software 1996-2006. All Rights Reserved.
This class manages the database detail report for
the Goldenseal estimating software,
project management software, construction
estimating software
and construction project estimating software.
class CDBDetailWindow : public CEnclosingView
{
public:
enum { class_ID = 'DBDW' };
enum
{
col_classname = 1,
col_classid = 2,
col_count = 3,
col_objectname = 4,
col_memory = 5
};
CDBDetailWindow(LStream *inStream);
virtual ~CDBDetailWindow() {}
virtual void ListenToMessage(MessageT inMessage, void *ioParam);
protected:
CObjectDataTable *mObjectTable;
CTableTitleBar *mTableTitleBar; // TCS 5/31/00
virtual void FinishCreateSelf();
virtual void PrepareObjectTable();
virtual void RefreshTable() {}
virtual void SaveReportAsText();
}; |