KSquare Utilities
FeatureFileIO.cpp File Reference
#include "FirstIncludes.h"
#include <stdio.h>
#include <math.h>
#include <ctype.h>
#include <time.h>
#include <string>
#include <iostream>
#include <fstream>
#include <vector>
#include <stdlib.h>
#include <string.h>
#include "MemoryDebug.h"
#include "KKBaseTypes.h"
#include "DateTime.h"
#include "GoalKeeper.h"
#include "GlobalGoalKeeper.h"
#include "ImageIO.h"
#include "OSservices.h"
#include "RunLog.h"
#include "KKStr.h"
#include "FeatureFileIO.h"
#include "FeatureFileIOArff.h"
#include "FeatureFileIOC45.h"
#include "FeatureFileIOColumn.h"
#include "FeatureFileIODstWeb.h"
#include "FeatureFileIORoberts.h"
#include "FeatureFileIOSparse.h"
#include "FeatureFileIOUCI.h"
#include "FactoryFVProducer.h"
#include "FeatureVectorProducer.h"
#include "FileDesc.h"
#include "MLClass.h"

Go to the source code of this file.

Functions

void ReportError (RunLog &log, const KKStr &fileName, const KKStr &funcName, kkint32 lineCount, const KKStr &errorDesc)
 

Function Documentation

void ReportError ( RunLog log,
const KKStr fileName,
const KKStr funcName,
kkint32  lineCount,
const KKStr errorDesc 
)

Definition at line 45 of file FeatureFileIO.cpp.

51 {
52  log.Level (-1) << endl
53  << funcName << " *** ERROR ***" << endl
54  << " File [" << fileName << "]" << endl
55  << " LineCount[" << lineCount << "]" << endl
56  << " Error [" << errorDesc << "]" << endl
57  << endl;
58 } /* ReportError */
HTMLReport &__cdecl endl(HTMLReport &htmlReport)
Definition: HTMLReport.cpp:240
RunLog & Level(kkint32 _level)
Definition: RunLog.cpp:220