summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestHG.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-08-24 20:01:40 (GMT)
committerBrad King <brad.king@kitware.com>2016-08-25 13:34:37 (GMT)
commit38491644540a203ee6465dd0bf179afb426aa835 (patch)
treef80e2f73708cf9dbf8476001d03146c92da99302 /Source/CTest/cmCTestHG.h
parent81c3e637ccc135068a06fa3dc72f23733f003db5 (diff)
downloadCMake-38491644540a203ee6465dd0bf179afb426aa835.zip
CMake-38491644540a203ee6465dd0bf179afb426aa835.tar.gz
CMake-38491644540a203ee6465dd0bf179afb426aa835.tar.bz2
CTest: fix include-what-you-use violations
Diffstat (limited to 'Source/CTest/cmCTestHG.h')
-rw-r--r--Source/CTest/cmCTestHG.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestHG.h b/Source/CTest/cmCTestHG.h
index c4ce08c..08b479c 100644
--- a/Source/CTest/cmCTestHG.h
+++ b/Source/CTest/cmCTestHG.h
@@ -12,8 +12,15 @@
#ifndef cmCTestHG_h
#define cmCTestHG_h
+#include <cmConfigure.h>
+
#include "cmCTestGlobalVC.h"
+#include <iosfwd>
+#include <string>
+
+class cmCTest;
+
/** \class cmCTestHG
* \brief Interaction with Mercurial command-line tool
*
@@ -37,11 +44,12 @@ private:
// Parsing helper classes.
class IdentifyParser;
- class StatusParser;
class LogParser;
+ class StatusParser;
+
friend class IdentifyParser;
- friend class StatusParser;
friend class LogParser;
+ friend class StatusParser;
};
#endif