Renamed debugOff(bool) to setDebug(bool)

This commit is contained in:
Matt Hill
2015-07-08 08:14:47 -04:00
parent e48245e3dc
commit d772ef295c
2 changed files with 2 additions and 2 deletions

View File

@@ -241,7 +241,7 @@ namespace alpr
} }
void Config::debugOff(bool value) void Config::setDebug(bool value)
{ {
debugGeneral = !value; debugGeneral = !value;
debugTiming = !value; debugTiming = !value;

View File

@@ -119,7 +119,7 @@ namespace alpr
bool debugShowImages; bool debugShowImages;
bool debugPauseOnFrame; bool debugPauseOnFrame;
void debugOff(bool value); void setDebug(bool value);
std::string getKeypointsRuntimeDir(); std::string getKeypointsRuntimeDir();
std::string getCascadeRuntimeDir(); std::string getCascadeRuntimeDir();