diff options
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h new file mode 100644 index 0000000..a7b00f7 --- /dev/null +++ b/Source/cmSystemTools.h @@ -0,0 +1,37 @@ +/*========================================================================= + + Program: Insight Segmentation & Registration Toolkit + Module: $RCSfile$ + Language: C++ + Date: $Date$ + Version: $Revision$ + + + Copyright (c) 2000 National Library of Medicine + All rights reserved. + + See COPYRIGHT.txt for copyright details. + +=========================================================================*/ +/** + * cmWindowsTools + */ +#ifndef cmWindowsTools_h +#define cmWindowsTools_h +#ifdef _MSC_VER +#pragma warning ( disable : 4786 ) +#endif + +#include <string> + +class cmSystemTools +{ +public: + static bool MakeDirectory(const char* path); + static void ReplaceString(std::string& source, + const char* replace, + const char* with); +}; + + +#endif |