diff options
author | Brad King <brad.king@kitware.com> | 2001-10-31 23:56:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-10-31 23:56:56 (GMT) |
commit | 8e79e498f988fbff8b6004af71d45a4a5c82c716 (patch) | |
tree | e5fbfecbf1ea93e65335307a6b611bbd75c664e4 /Source/cmCableClassSet.h | |
parent | eb6e54c64b86a4696fedc1935d3ad1609ce53c0f (diff) | |
download | CMake-8e79e498f988fbff8b6004af71d45a4a5c82c716.zip CMake-8e79e498f988fbff8b6004af71d45a4a5c82c716.tar.gz CMake-8e79e498f988fbff8b6004af71d45a4a5c82c716.tar.bz2 |
ENH: Added automatic detection of >> sequences in template names and replacement with "> >" in the output.
Diffstat (limited to 'Source/cmCableClassSet.h')
-rw-r--r-- | Source/cmCableClassSet.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmCableClassSet.h b/Source/cmCableClassSet.h index 3ecb4ca..1447088 100644 --- a/Source/cmCableClassSet.h +++ b/Source/cmCableClassSet.h @@ -52,9 +52,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. class cmCableClass { public: - typedef std::set<std::string> Sources; + typedef std::set<cmStdString> Sources; cmCableClass() {} - cmCableClass(const std::string& tag): m_Tag(tag) {} + cmCableClass(const cmStdString& tag): m_Tag(tag) {} void AddSources(const Sources& sources); void AddSource(const char*); @@ -62,13 +62,13 @@ public: Sources::const_iterator SourcesBegin() const { return m_Sources.begin(); } Sources::const_iterator SourcesEnd() const { return m_Sources.end(); } - const std::string& GetTag() const { return m_Tag; } + const cmStdString& GetTag() const { return m_Tag; } private: /** * The tag name of this class. */ - std::string m_Tag; + cmStdString m_Tag; /** * Store the set of source files (headers) needed to define this class. |