00001 00002 // $Id: AlgConfig.h,v 1.6 2001/01/25 22:33:10 bv Exp $ 00003 // 00004 // AlgConfig.h 00005 // 00006 // AlgConfig is a general class for Algorithm Config objects. 00007 // 00008 // Author: G. Irwin 2/2000 00010 00011 #ifndef ALGCONFIG_H 00012 #define ALGCONFIG_H 00013 00014 #include "Registry/Registry.h" 00015 00016 class AlgConfig : public Registry 00017 { 00018 00019 public: 00020 AlgConfig(); 00021 virtual ~AlgConfig(); 00022 00023 AlgConfig(AlgConfig& rhs); // Need non-default copy ctor 00024 00025 virtual AlgConfig *Dup(); 00026 virtual const char *GetName() const; 00027 00028 ClassDef(AlgConfig,1) // Algorithm Config Base Class 00029 00030 }; 00031 00032 #endif // ALGCONFIG_H
1.3.9.1