summaryrefslogtreecommitdiffstats
path: root/Source/cmCableClassSet.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-10-31 23:56:56 (GMT)
committerBrad King <brad.king@kitware.com>2001-10-31 23:56:56 (GMT)
commit8e79e498f988fbff8b6004af71d45a4a5c82c716 (patch)
treee5fbfecbf1ea93e65335307a6b611bbd75c664e4 /Source/cmCableClassSet.h
parenteb6e54c64b86a4696fedc1935d3ad1609ce53c0f (diff)
downloadCMake-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.h8
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.