1234567891011121314151617181920212223242526272829303132 |
- #ifndef cmExportSetMap_h
- #define cmExportSetMap_h
- #include "cmConfigure.h"
- #include <map>
- #include <string>
- class cmExportSet;
- class cmExportSetMap : public std::map<std::string, cmExportSet*>
- {
- typedef std::map<std::string, cmExportSet*> derived;
- public:
-
- cmExportSet* operator[](const std::string& name);
- void clear();
-
- ~cmExportSetMap();
- };
- #endif
|