Code cleanups

on behalf of Lebedev, see issue 1279
This commit is contained in:
Oliver Duis
2012-03-16 15:22:27 +01:00
parent d520543462
commit 2a507c8615
9 changed files with 62 additions and 62 deletions

View File

@@ -209,28 +209,28 @@ void KLTWriteFeatureListToPPM(
KLT_PixelType *greyimg,
int ncols,
int nrows,
char *filename);
const char *filename);
void KLTWriteFeatureList(
KLT_FeatureList fl,
char *filename,
char *fmt);
const char *filename,
const char *fmt);
void KLTWriteFeatureHistory(
KLT_FeatureHistory fh,
char *filename,
char *fmt);
const char *filename,
const char *fmt);
void KLTWriteFeatureTable(
KLT_FeatureTable ft,
char *filename,
char *fmt);
const char *filename,
const char *fmt);
KLT_FeatureList KLTReadFeatureList(
KLT_FeatureList fl,
char *filename);
const char *filename);
KLT_FeatureHistory KLTReadFeatureHistory(
KLT_FeatureHistory fh,
char *filename);
const char *filename);
KLT_FeatureTable KLTReadFeatureTable(
KLT_FeatureTable ft,
char *filename);
const char *filename);
#ifdef __cplusplus
}
#endif