diff options
Diffstat (limited to 'backends/networking/curl/cloudicon.h')
-rw-r--r-- | backends/networking/curl/cloudicon.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/backends/networking/curl/cloudicon.h b/backends/networking/curl/cloudicon.h index 0210899777..e981dda611 100644 --- a/backends/networking/curl/cloudicon.h +++ b/backends/networking/curl/cloudicon.h @@ -23,12 +23,11 @@ #ifndef BACKENDS_NETWORKING_CURL_CLOUDICON_H #define BACKENDS_NETWORKING_CURL_CLOUDICON_H -#include "backends/networking/curl/request.h" #include "graphics/transparent_surface.h" namespace Networking { -class CloudIcon: public Request { +class CloudIcon { static const float ALPHA_STEP, ALPHA_MAX, ALPHA_MIN; bool _wasVisible, _iconsInited; @@ -43,9 +42,8 @@ public: CloudIcon(); ~CloudIcon(); - void draw(); - virtual void handle(); - virtual void restart(); + /** Returns true if ConnMan's timer could be stopped. */ + bool draw(); }; } // End of namespace Networking |