1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added some "override" annotations.

This commit is contained in:
jules 2013-07-08 19:05:14 +01:00
parent 23f59fd99c
commit 5918d039ce
53 changed files with 245 additions and 248 deletions

View file

@ -117,13 +117,13 @@ public:
//==============================================================================
// The following methods implement the basic Typeface behaviour.
float getAscent() const;
float getDescent() const;
float getHeightToPointsFactor() const;
float getStringWidth (const String& text);
void getGlyphPositions (const String& text, Array <int>& glyphs, Array<float>& xOffsets);
bool getOutlineForGlyph (int glyphNumber, Path& path);
EdgeTable* getEdgeTableForGlyph (int glyphNumber, const AffineTransform& transform);
float getAscent() const override;
float getDescent() const override;
float getHeightToPointsFactor() const override;
float getStringWidth (const String&) override;
void getGlyphPositions (const String&, Array <int>& glyphs, Array<float>& xOffsets) override;
bool getOutlineForGlyph (int glyphNumber, Path&) override;
EdgeTable* getEdgeTableForGlyph (int glyphNumber, const AffineTransform&) override;
protected:
//==============================================================================