1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-23 09:38:56 +08:00

datasets: apply CV_OVERRIDE/CV_FINAL

This commit is contained in:
Alexander Alekhin
2018-03-21 16:58:04 +03:00
parent 8af62cd606
commit 55767bfcda
55 changed files with 143 additions and 121 deletions

View File

@@ -49,14 +49,14 @@ namespace datasets
using namespace std;
class HPE_parseImp : public HPE_parse
class HPE_parseImp CV_FINAL : public HPE_parse
{
public:
HPE_parseImp() {}
//HPE_parseImp(const string &path);
virtual ~HPE_parseImp() {}
virtual void load(const string &path);
virtual void load(const string &path) CV_OVERRIDE;
private:
void loadDataset(const string &path);