summaryrefslogtreecommitdiffstats
path: root/Source/cmVisualStudioSlnData.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmVisualStudioSlnData.h')
-rw-r--r--Source/cmVisualStudioSlnData.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/Source/cmVisualStudioSlnData.h b/Source/cmVisualStudioSlnData.h
new file mode 100644
index 0000000..b2f8db9
--- /dev/null
+++ b/Source/cmVisualStudioSlnData.h
@@ -0,0 +1,54 @@
+/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
+ file Copyright.txt or https://cmake.org/licensing for details. */
+#ifndef cmVisualStudioSlnData_h
+#define cmVisualStudioSlnData_h
+
+#include <cmConfigure.h>
+
+#include <map>
+#include <string>
+#include <vector>
+
+class cmSlnProjectEntry
+{
+public:
+ cmSlnProjectEntry() {}
+ cmSlnProjectEntry(const std::string& guid, const std::string& name,
+ const std::string& relativePath)
+ : Guid(guid)
+ , Name(name)
+ , RelativePath(relativePath)
+ {
+ }
+
+ std::string GetGUID() const { return Guid; }
+ std::string GetName() const { return Name; }
+ std::string GetRelativePath() const { return RelativePath; }
+
+private:
+ std::string Guid, Name, RelativePath;
+};
+
+class cmSlnData
+{
+public:
+ const cmSlnProjectEntry* GetProjectByGUID(
+ const std::string& projectGUID) const;
+
+ const cmSlnProjectEntry* GetProjectByName(
+ const std::string& projectName) const;
+
+ std::vector<cmSlnProjectEntry> GetProjects() const;
+
+ cmSlnProjectEntry* AddProject(const std::string& projectGUID,
+ const std::string& projectName,
+ const std::string& projectRelativePath);
+
+private:
+ typedef std::map<std::string, cmSlnProjectEntry> ProjectStorage;
+ ProjectStorage ProjectsByGUID;
+ typedef std::map<std::string, ProjectStorage::iterator> ProjectStringIndex;
+ ProjectStringIndex ProjectNameIndex;
+};
+
+#endif