diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-03-18 22:42:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-03-20 15:41:29 (GMT) |
commit | 5a72dbd40cee412d63099ec7c84f0e1276dc97bf (patch) | |
tree | 6fa46bf04484ad13e8623a215288570f37456b7b /Source/cmCTest.h | |
parent | a5eeb0310db04aa661dec37f7cc1073e058f3acf (diff) | |
download | CMake-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.h | 19 |
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&); |