00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef LWH_AIManagedObject_H
00010 #define LWH_AIManagedObject_H
00011
00012 #ifndef LWH_USING_AIDA
00013
00014 #include <string>
00015
00018 namespace AIDA {
00019
00020 class ITree;
00021
00022 class IManagedObject {
00023
00024 public:
00025
00026 virtual ~IManagedObject() {}
00027
00028 virtual std::string name() const = 0;
00029 virtual void * cast(const std::string & className) const = 0;
00030
00031 };
00032
00033 }
00034
00037 #else
00038 #include "AIDA/IManagedObject.h"
00039 #endif
00040
00041 #endif