Skip to content
Snippets Groups Projects
Commit 1684e28a authored by Julien Michel's avatar Julien Michel
Browse files

COMP: Add missing ITK_OVERRIDE

parent f286493a
Branches
Tags
No related merge requests found
......@@ -61,21 +61,21 @@ public:
itkTypeMacro(SharkRandomForestsMachineLearningModel, MachineLearningModel);
/** Train the machine learning model */
virtual void Train();
virtual void Train() ITK_OVERRIDE;
/** Save the model to file */
virtual void Save(const std::string & filename, const std::string & name="");
virtual void Save(const std::string & filename, const std::string & name="") ITK_OVERRIDE;
/** Load the model from file */
virtual void Load(const std::string & filename, const std::string & name="");
virtual void Load(const std::string & filename, const std::string & name="") ITK_OVERRIDE;
/**\name Classification model file compatibility tests */
//@{
/** Is the input model file readable and compatible with the corresponding classifier ? */
virtual bool CanReadFile(const std::string &);
virtual bool CanReadFile(const std::string &) ITK_OVERRIDE;
/** Is the input model file writable and compatible with the corresponding classifier ? */
virtual bool CanWriteFile(const std::string &);
virtual bool CanWriteFile(const std::string &) ITK_OVERRIDE;
//@}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment