gccDppConsole Test C++ SDK  1.0.0.0
DPP C++ Console Demonstration
stringex.h
Go to the documentation of this file.
00001 #pragma once
00002 #include <stdio.h>
00003 #include <stdarg.h>
00004 #include <cstdarg>
00005 #include <vector>
00006 #include <string>
00007 #include <cctype> // std::toupper, std::tolower
00008 using namespace std;
00009 
00010 class stringex
00011 {
00012 public:
00013         stringex(void);
00014         ~stringex(void);
00015         std::string Format (const char *fmt, ...);
00016         std::string MakeUpper(string StdString);
00017         std::string MakeLower(string StdString);
00018 
00019 private:
00020         std::string vformat (const char *fmt, va_list ap);
00021 
00022 };
00023 
00024