textfunctions.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
 
#include "stdafx.h"
 
// Functions for manipulating text
 
/**
 *  Replace all quote characters etc in a
 *  string with the correct escape characters
 *  to place into Javascript
 */
std::string escapeJavascriptString( const std::string& in );
 
 
 
void testTextFunctions();