Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef DDS_KEYWORDS_H
00024 #define DDS_KEYWORDS_H
00025
00026 #include "DDS.h"
00027
00028 #include <MMgt_TShared.hxx>
00029
00030 #include <NCollection_DataMap.hxx>
00031
00032 DEFINE_STANDARD_HANDLE(DDS_KeyWords, MMgt_TShared)
00033
00034 class TCollection_AsciiString;
00035
00036 class DDS_KeyWords : public MMgt_TShared
00037 {
00038 public:
00039 Standard_EXPORT static Handle(DDS_KeyWords) Get();
00040
00041 Standard_EXPORT TCollection_AsciiString GetKeyWord( const TCollection_AsciiString& ) const;
00042 Standard_EXPORT void SetKeyWord( const TCollection_AsciiString&,
00043 const TCollection_AsciiString& );
00044
00045 private:
00046 DDS_KeyWords();
00047
00048 private:
00049 typedef NCollection_DataMap<TCollection_AsciiString,
00050 TCollection_AsciiString> KeyWordMap;
00051
00052 private:
00053 KeyWordMap myKeyWord;
00054
00055 public:
00056 DEFINE_STANDARD_RTTI(DDS_KeyWords)
00057 };
00058
00059 #endif