00001 00002 // $Id: CandStripListHandle.h,v 1.3 2002/10/17 07:33:54 rhatcher Exp $ 00003 // 00004 // CandStripListHandle 00005 // 00006 // CandStripListHandle is the specialized access handle to CandStripList 00007 // 00008 // Each concrete CandHandle must define a DupHandle function. 00009 // 00010 // Author: R. Lee 2001.01.19 00011 // 00013 00014 #ifndef CANDSTRIPLISTHANDLE_H 00015 #define CANDSTRIPLISTHANDLE_H 00016 00017 #include "Candidate/CandHandle.h" 00018 #include "Navigation/XxxItr.h" 00019 class CandStripList; 00020 00021 class CandStripListHandle : public CandHandle 00022 { 00023 00024 public: 00025 CandStripListHandle(); 00026 CandStripListHandle(const CandStripListHandle &cdlh); 00027 CandStripListHandle(CandStripList *cdl); 00028 virtual ~CandStripListHandle(); 00029 virtual CandStripListHandle *DupHandle() const; 00030 00031 virtual void Trace(const char *c = "") const; 00032 00033 ClassDef(CandStripListHandle,1) // User access handle to CandStripList 00034 00035 }; 00036 00037 XXXITRDEF(CandStripListHandle) 00038 00039 #endif // CANDSTRIPLISTHANDLE_H
1.3.9.1