#include "URLEncode.h" #include #include using namespace std; int main(int argc, char *argv[]) { string test = string("Testing: !@#$%^&*() " TIMESTAMP_ISO); cout << test << endl; cout << URLEncode(test) << endl; }