12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef cmPathLabel_h
- #define cmPathLabel_h
- #include "cmConfigure.h"
- #include <string>
- class cmPathLabel
- {
- public:
- cmPathLabel(const std::string& label);
-
-
- bool operator<(const cmPathLabel& l) const;
- bool operator==(const cmPathLabel& l) const;
- const std::string& GetLabel() const { return this->Label; }
- const unsigned int& GetHash() const { return this->Hash; }
- protected:
- cmPathLabel();
- std::string Label;
- unsigned int Hash;
- };
- #endif
|