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