1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-21 06:11:09 +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

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