Skip to content
Snippets Groups Projects
Commit dc318060 authored by Julien Malik's avatar Julien Malik
Browse files

BUG: fix last commit

parent 7c1d788e
No related branches found
No related tags found
No related merge requests found
Showing with 18 additions and 18 deletions
......@@ -78,10 +78,10 @@ public:
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &) = 0;
virtual bool CanReadFile(const std::string &);
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &) = 0;
virtual bool CanWriteFile(const std::string &);
//@}
//Setters/Getters to SVM model
......
......@@ -110,10 +110,10 @@ public:
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &) = 0;
virtual bool CanReadFile(const std::string &);
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &) = 0;
virtual bool CanWriteFile(const std::string &);
//@}
protected:
......
......@@ -170,10 +170,10 @@ public:
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &) = 0;
virtual bool CanReadFile(const std::string &);
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &) = 0;
virtual bool CanWriteFile(const std::string &);
//@}
protected:
......
......@@ -118,10 +118,10 @@ public:
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &) = 0;
virtual bool CanReadFile(const std::string &);
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &) = 0;
virtual bool CanWriteFile(const std::string &);
//@}
protected:
......
......@@ -82,10 +82,10 @@ public:
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &) = 0;
virtual bool CanReadFile(const std::string &);
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &) = 0;
virtual bool CanWriteFile(const std::string &);
//@}
protected:
......
......@@ -167,10 +167,10 @@ public:
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &) = 0;
virtual bool CanReadFile(const std::string &);
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &) = 0;
virtual bool CanWriteFile(const std::string &);
//@}
protected:
......
......@@ -69,10 +69,10 @@ public:
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &) = 0;
virtual bool CanReadFile(const std::string &);
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &) = 0;
virtual bool CanWriteFile(const std::string &);
//@}
protected:
......
......@@ -71,10 +71,10 @@ public:
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &) = 0;
virtual bool CanReadFile(const std::string &);
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &) = 0;
virtual bool CanWriteFile(const std::string &);
//@}
//Setters of RT parameters (documentation get from opencv doxygen 2.4)
......
......@@ -69,10 +69,10 @@ public:
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &) = 0;
virtual bool CanReadFile(const std::string &);
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &) = 0;
virtual bool CanWriteFile(const std::string &);
//@}
//Setters/Getters to SVM model
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment