00001
00002
00003
00004
00005
00006
00010
00011
00012
00013
00014
00015
00016
00017
00018
#ifndef OFX_UTIL_H
00019
#define OFX_UTIL_H
00020
#include <string.h>
00021
#include <time.h>
00022
#include "ParserEventGeneratorKit.h"
00023
using namespace std;
00024
00025
00026
00027
00029 ostream &
operator<<(ostream &os, SGMLApplication::CharString s);
00030
00032
wchar_t*
CharStringtowchar_t(SGMLApplication::CharString source,
wchar_t *dest);
00033
00035 string
CharStringtostring(
const SGMLApplication::CharString source, string &dest);
00036
00038 string
AppendCharStringtostring(
const SGMLApplication::CharString source, string &dest);
00039
00041 time_t
ofxdate_to_time_t(
const string ofxdate);
00042
00044
double ofxamount_to_double(
const string ofxamount);
00045
00047 string
strip_whitespace(
const string para_string);
00048
#endif