freetype: apply CV_OVERRIDE/CV_FINAL

pull/1588/head
Alexander Alekhin 7 years ago
parent acec6955d5
commit 25c68d51a4
  1. 10
      modules/freetype/src/freetype.cpp

@ -61,22 +61,22 @@ namespace freetype {
using namespace std; using namespace std;
class CV_EXPORTS_W FreeType2Impl : public FreeType2 class CV_EXPORTS_W FreeType2Impl CV_FINAL : public FreeType2
{ {
public: public:
FreeType2Impl(); FreeType2Impl();
~FreeType2Impl(); ~FreeType2Impl();
void loadFontData(String fontFileName, int id) ; void loadFontData(String fontFileName, int id) CV_OVERRIDE;
void setSplitNumber( int num ); void setSplitNumber( int num ) CV_OVERRIDE;
void putText( void putText(
InputOutputArray img, const String& text, Point org, InputOutputArray img, const String& text, Point org,
int fontHeight, Scalar color, int fontHeight, Scalar color,
int thickness, int line_type, bool bottomLeftOrigin int thickness, int line_type, bool bottomLeftOrigin
); ) CV_OVERRIDE;
Size getTextSize( Size getTextSize(
const String& text, int fontHeight, int thickness, const String& text, int fontHeight, int thickness,
CV_OUT int* baseLine CV_OUT int* baseLine
); ) CV_OVERRIDE;
private: private:
FT_Library mLibrary; FT_Library mLibrary;

Loading…
Cancel
Save