]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/application.h
Move accessors of static data members to .cpp files
[libs/core.git] / source / core / application.h
index 2a1cc05b1cc8b5d9b8a37cf6f061c782df43e8da..d5a571a28a9f73306dffae3e99b470e39a2fcb47 100644 (file)
@@ -54,9 +54,9 @@ public:
        Application::run(). */
        static void set_startup_info(const char *, void *);
 
-       static void *get_data() { return _data; }
-       static const char *get_argv0() { return _argv0; }
-       static const std::string &get_name() { return _name; }
+       static void *get_data();
+       static const char *get_argv0();
+       static const std::string &get_name();
 
 protected:
        /** Default main loop.  Calls tick() repeatedly until exit() is called.  A