summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestP4.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/cmCTestP4.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/cmCTestP4.h')
-rw-r--r--Source/CTest/cmCTestP4.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/Source/CTest/cmCTestP4.h b/Source/CTest/cmCTestP4.h
index 84e4f96..549936b 100644
--- a/Source/CTest/cmCTestP4.h
+++ b/Source/CTest/cmCTestP4.h
@@ -12,11 +12,17 @@
#ifndef cmCTestP4_h
#define cmCTestP4_h
+#include <cmConfigure.h>
+
#include "cmCTestGlobalVC.h"
+#include <iosfwd>
#include <map>
+#include <string>
#include <vector>
+class cmCTest;
+
/** \class cmCTestP4
* \brief Interaction with the Perforce command-line tool
*
@@ -62,12 +68,13 @@ private:
void LoadRevisions() CM_OVERRIDE;
void LoadModifications() CM_OVERRIDE;
- // Parsing helper classes.
- class IdentifyParser;
class ChangesParser;
- class UserParser;
class DescribeParser;
class DiffParser;
+ // Parsing helper classes.
+ class IdentifyParser;
+ class UserParser;
+
friend class IdentifyParser;
friend class ChangesParser;
friend class UserParser;