summaryrefslogtreecommitdiffstats
path: root/Source/CPack/IFW
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-05-06 18:49:44 (GMT)
committerBrad King <brad.king@kitware.com>2016-05-06 18:51:26 (GMT)
commit85425a3e6c40b1035a4be98466d8df9cad9bf479 (patch)
treea3cc6e71d8cc41f680861a28bc7828161eff3b8a /Source/CPack/IFW
parent64b5520346c75ec479042a114390a0bf71909723 (diff)
downloadCMake-85425a3e6c40b1035a4be98466d8df9cad9bf479.zip
CMake-85425a3e6c40b1035a4be98466d8df9cad9bf479.tar.gz
CMake-85425a3e6c40b1035a4be98466d8df9cad9bf479.tar.bz2
Move comments off of class access specifier lines
The clang-format tool may turn this: public: // comment about access specifier // unrelated comment indented with code ... Into: public: // comment about access specifier // unrelated comment indented with code ... Avoid this by moving comments off of access specifier lines.
Diffstat (limited to 'Source/CPack/IFW')
-rw-r--r--Source/CPack/IFW/cmCPackIFWGenerator.h9
-rw-r--r--Source/CPack/IFW/cmCPackIFWInstaller.h12
-rw-r--r--Source/CPack/IFW/cmCPackIFWPackage.h13
3 files changed, 23 insertions, 11 deletions
diff --git a/Source/CPack/IFW/cmCPackIFWGenerator.h b/Source/CPack/IFW/cmCPackIFWGenerator.h
index 001c8c7..d02f9d2 100644
--- a/Source/CPack/IFW/cmCPackIFWGenerator.h
+++ b/Source/CPack/IFW/cmCPackIFWGenerator.h
@@ -61,7 +61,8 @@ public:
*/
bool IsVersionEqual(const char *version);
-protected: // cmCPackGenerator reimplementation
+protected:
+ // cmCPackGenerator reimplementation
/**
* @brief Initialize generator
@@ -110,7 +111,8 @@ protected: // cmCPackGenerator reimplementation
virtual bool SupportsAbsoluteDestination() const;
virtual bool SupportsComponentInstallation() const;
-protected: // Methods
+protected:
+ // Methods
bool IsOnePackage() const;
@@ -124,7 +126,8 @@ protected: // Methods
void WriteGeneratedByToStrim(cmXMLWriter& xout);
-protected: // Data
+protected:
+ // Data
friend class cmCPackIFWPackage;
friend class cmCPackIFWInstaller;
diff --git a/Source/CPack/IFW/cmCPackIFWInstaller.h b/Source/CPack/IFW/cmCPackIFWInstaller.h
index 04050c0..9cb7d5b 100644
--- a/Source/CPack/IFW/cmCPackIFWInstaller.h
+++ b/Source/CPack/IFW/cmCPackIFWInstaller.h
@@ -24,7 +24,8 @@ class cmXMLWriter;
*/
class cmCPackIFWInstaller
{
-public: // Types
+public:
+ // Types
typedef std::map<std::string, cmCPackIFWPackage*> PackagesMap;
@@ -37,14 +38,16 @@ public: // Types
std::string DisplayName;
};
-public: // Constructor
+public:
+ // Constructor
/**
* Construct installer
*/
cmCPackIFWInstaller();
-public: // Configuration
+public:
+ // Configuration
/// Name of the product being installed
std::string Name;
@@ -94,7 +97,8 @@ public: // Configuration
/// Filename for a custom installer control script
std::string ControlScript;
-public: // Internal implementation
+public:
+ // Internal implementation
const char* GetOption(const std::string& op) const;
bool IsOn(const std::string& op) const;
diff --git a/Source/CPack/IFW/cmCPackIFWPackage.h b/Source/CPack/IFW/cmCPackIFWPackage.h
index e647c16..4f3f40b 100644
--- a/Source/CPack/IFW/cmCPackIFWPackage.h
+++ b/Source/CPack/IFW/cmCPackIFWPackage.h
@@ -26,7 +26,9 @@ class cmXMLWriter;
*/
class cmCPackIFWPackage
{
-public: // Types
+public:
+ // Types
+
enum CompareTypes
{
CompareNone = 0x0,
@@ -61,14 +63,16 @@ public: // Types
}
};
-public: // [Con|De]structor
+public:
+ // [Con|De]structor
/**
* Construct package
*/
cmCPackIFWPackage();
-public: // Configuration
+public:
+ // Configuration
/// Human-readable name of the component
std::string DisplayName;
@@ -103,7 +107,8 @@ public: // Configuration
/// Determines that the package must always be installed
std::string ForcedInstallation;
-public: // Internal implementation
+public:
+ // Internal implementation
const char* GetOption(const std::string& op) const;
bool IsOn(const std::string& op) const;