summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSubmit.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-12-15 22:26:00 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-12-15 22:26:00 (GMT)
commit5b232ded151fc22144978b74cdaf7031d466e527 (patch)
treeb20c096cdc01697dd5bd3a3a2a5df1dc95e4c263 /Source/CTest/cmCTestSubmit.h
parentce8a34907a47b06f62f27aff1e1d6cb8dc9ee76e (diff)
downloadCMake-5b232ded151fc22144978b74cdaf7031d466e527.zip
CMake-5b232ded151fc22144978b74cdaf7031d466e527.tar.gz
CMake-5b232ded151fc22144978b74cdaf7031d466e527.tar.bz2
ENH: Add initial memory check support which works for Valgrind
Diffstat (limited to 'Source/CTest/cmCTestSubmit.h')
-rw-r--r--Source/CTest/cmCTestSubmit.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/Source/CTest/cmCTestSubmit.h b/Source/CTest/cmCTestSubmit.h
index c888b67..65dcd64 100644
--- a/Source/CTest/cmCTestSubmit.h
+++ b/Source/CTest/cmCTestSubmit.h
@@ -41,27 +41,27 @@ public:
/**
* Submit file using various ways
*/
- bool SubmitUsingFTP(const std::string& localprefix,
- const std::vector<std::string>& files,
- const std::string& remoteprefix,
- const std::string& url);
- bool SubmitUsingHTTP(const std::string& localprefix,
- const std::vector<std::string>& files,
- const std::string& remoteprefix,
- const std::string& url);
- bool SubmitUsingSCP(const std::string& localprefix,
- const std::vector<std::string>& files,
- const std::string& remoteprefix,
- const std::string& url);
+ bool SubmitUsingFTP(const cmStdString& localprefix,
+ const std::vector<cmStdString>& files,
+ const cmStdString& remoteprefix,
+ const cmStdString& url);
+ bool SubmitUsingHTTP(const cmStdString& localprefix,
+ const std::vector<cmStdString>& files,
+ const cmStdString& remoteprefix,
+ const cmStdString& url);
+ bool SubmitUsingSCP(const cmStdString& localprefix,
+ const std::vector<cmStdString>& files,
+ const cmStdString& remoteprefix,
+ const cmStdString& url);
- bool TriggerUsingHTTP(const std::vector<std::string>& files,
- const std::string& remoteprefix,
- const std::string& url);
+ bool TriggerUsingHTTP(const std::vector<cmStdString>& files,
+ const cmStdString& remoteprefix,
+ const cmStdString& url);
private:
- std::string m_HTTPProxy;
+ cmStdString m_HTTPProxy;
int m_HTTPProxyType;
- std::string m_FTPProxy;
+ cmStdString m_FTPProxy;
int m_FTPProxyType;
bool m_Verbose;
};