Added const to the aguement lists.

This commit is contained in:
Harry Moffat 2003-09-03 18:48:33 +00:00
parent 6f190b568d
commit 1cb7a2883b
2 changed files with 4 additions and 4 deletions

View file

@ -564,8 +564,8 @@ namespace ctml {
}
int convert_ck(const char* in_file, const char* db_file,
const char* tr_file, const char* out_file, const char* id_tag) {
int convert_ck(const char * const in_file, const char * const db_file,
const char * const tr_file, const char * const out_file, const char* const id_tag) {
ckr::CKReader r;
r.validate = true;
//int i=1;

View file

@ -48,8 +48,8 @@ namespace ctml {
void ck2ctml(string idtag, ckr::CKReader& r,
XML_Node& root);
int convert_ck(const char* in_file, const char* db_file,
const char* tr_file, const char* out_file, const char* id_tag);
int convert_ck(const char * const in_file, const char * const db_file,
const char * const tr_file, const char * const out_file, const char * const id_tag);
}