summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorRegina Pfeifer <regina@mailbox.org>2019-03-18 22:42:06 (GMT)
committerBrad King <brad.king@kitware.com>2019-03-20 15:41:29 (GMT)
commit5a72dbd40cee412d63099ec7c84f0e1276dc97bf (patch)
tree6fa46bf04484ad13e8623a215288570f37456b7b /Source/cmCTest.h
parenta5eeb0310db04aa661dec37f7cc1073e058f3acf (diff)
downloadCMake-5a72dbd40cee412d63099ec7c84f0e1276dc97bf.zip
CMake-5a72dbd40cee412d63099ec7c84f0e1276dc97bf.tar.gz
CMake-5a72dbd40cee412d63099ec7c84f0e1276dc97bf.tar.bz2
cmCTest: Remove dead code
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r--Source/cmCTest.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index 5f49cbc..d300c33 100644
--- a/Source/cmCTest.h
+++ b/Source/cmCTest.h
@@ -60,22 +60,6 @@ public:
PartCount // Update names in constructor when adding a part
};
-#ifdef CMAKE_BUILD_WITH_CMAKE
- enum HTTPMethod
- {
- HTTP_GET,
- HTTP_POST,
- HTTP_PUT
- };
-
- /**
- * Perform an HTTP request.
- */
- static int HTTPRequest(std::string url, HTTPMethod method,
- std::string& response, std::string const& fields = "",
- std::string const& putFile = "", int timeout = 0);
-#endif
-
/** Get a testing part id from its string name. Returns PartCount
if the string does not name a valid part. */
Part GetPartFromName(const char* name);
@@ -341,9 +325,6 @@ public:
const std::string& cmake_var,
bool suppress = false);
- /** Make string safe to be sent as a URL */
- static std::string MakeURLSafe(const std::string&);
-
/** Decode a URL to the original string. */
static std::string DecodeURL(const std::string&);