aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/URLEncodeTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CommonLibs/URLEncodeTest.cpp')
-rw-r--r--CommonLibs/URLEncodeTest.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/CommonLibs/URLEncodeTest.cpp b/CommonLibs/URLEncodeTest.cpp
new file mode 100644
index 0000000..dbc4630
--- /dev/null
+++ b/CommonLibs/URLEncodeTest.cpp
@@ -0,0 +1,17 @@
+
+#include "URLEncode.h"
+#include <string>
+#include <iostream>
+
+
+using namespace std;
+
+
+int main(int argc, char *argv[])
+{
+
+ string test = string("Testing: !@#$%^&*() " __DATE__ " " __TIME__);
+ cout << test << endl;
+ cout << URLEncode(test) << endl;
+}
+