2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-10-17 21:07:26 +04:00
|
|
|
#ifndef cmPathLabel_h
|
|
|
|
#define cmPathLabel_h
|
|
|
|
|
2016-09-01 21:05:48 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2014-10-17 21:07:26 +04:00
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
|
|
|
/** \class cmPathLabel
|
|
|
|
* \brief Helper class for text based labels
|
|
|
|
*
|
|
|
|
* cmPathLabel is extended in different classes to act as an inheritable
|
|
|
|
* enum. Comparisons are done on a precomputed Jenkins hash of the string
|
|
|
|
* label for indexing and searchig.
|
|
|
|
*/
|
|
|
|
class cmPathLabel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmPathLabel(const std::string& label);
|
|
|
|
|
|
|
|
// The comparison operators are only for quick sorting and searching and
|
|
|
|
// in no way imply any lexicographical order of the label
|
2016-05-16 17:34:04 +03:00
|
|
|
bool operator<(const cmPathLabel& l) const;
|
|
|
|
bool operator==(const cmPathLabel& l) const;
|
2014-10-17 21:07:26 +04:00
|
|
|
|
|
|
|
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
|