| 29 | }; |
| 30 | |
| 31 | Font* Font::create(const string& file, float size) { |
| 32 | return new Font_none(); |
| 33 | } |
| 34 | |
| 35 | sptr<Font> Font::_create(const string& name, int style, float size) { |
| 36 | return sptr<Font>(new Font_none()); |
nothing calls this directly
no outgoing calls
no test coverage detected