00001
00002
00003
00004
00005
00006
00007
00008
00010
00011 #define sw_cbl_codetree_element_h
00012
00013 #include
00014 #include
00015
00016 namespace cbl {
00017 namespace codetree {
00018
00019 namespace symbols {
00020 class TModuleSym;
00021 }
00022
00023
00024 class TElement : public swl::TObject {
00025 private:
00026 TElement *FOwnerComponent;
00027
00028
00029 std::deque *FComponents;
00030
00031
00032 protected:
00033 TElement(symbols::TModuleSym *AOwnerModule);
00034 TElement(const TElement& AElement);
00035 ~TElement();
00036
00037 public:
00038
00039 void registerComponent(TElement *AComponent);
00040 void unregisterComponent(TElement *AComponent);
00041
00042 void ownerComponent(TElement *AOwner);
00043 TElement *ownerComponent();
00044 const TElement *ownerComponent() const;
00045
00046
00047 void ownerModule(symbols::TModuleSym *AOwnerModule);
00048 symbols::TModuleSym *ownerModule();
00049 const symbols::TModuleSym *ownerModule() const;
00050 };
00051
00052 }
00053 }
00054
00055 #endif
00056