From 7272d7c84cf6e874b417ecd165f46f26ae7729c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Mon, 23 May 2016 11:53:21 +0200 Subject: [core] move *Observers to their own files --- test/src/mbgl/test/stub_style_observer.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/src') diff --git a/test/src/mbgl/test/stub_style_observer.hpp b/test/src/mbgl/test/stub_style_observer.hpp index 6b5eee189e..a0d03de8a8 100644 --- a/test/src/mbgl/test/stub_style_observer.hpp +++ b/test/src/mbgl/test/stub_style_observer.hpp @@ -1,14 +1,14 @@ #ifndef MBGL_TEST_STUB_STYLE_OBSERVER #define MBGL_TEST_STUB_STYLE_OBSERVER -#include +#include namespace mbgl { /** - * An implementation of Style::Observer that forwards all methods to dynamically-settable lambas. + * An implementation of StyleObserver that forwards all methods to dynamically-settable lambas. */ -class StubStyleObserver : public Style::Observer { +class StubStyleObserver : public StyleObserver { public: void onGlyphsLoaded(const FontStack& fontStack, const GlyphRange& glyphRange) override { if (glyphsLoaded) glyphsLoaded(fontStack, glyphRange); -- cgit v1.2.1