]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/application.h
Style and comment updates
[libs/core.git] / source / core / application.h
index c7a1af137a93cacdc921e28c58419cf70947bb16..08393b724b486077452e9ffb940bd9822fc6578c 100644 (file)
@@ -4,8 +4,7 @@
 namespace Msp {
 
 /**
-Base class for applications.  Inherit the main class from this and add a static
-member of type RegApp<MainClass>.
+Base class for applications.  See also RegisteredApplication.
 */
 class Application
 {
@@ -49,6 +48,10 @@ private:
 };
 
 
+/**
+Registers the class to be used for program startup.  The main application class
+should be derived from this.
+*/
 template<typename T>
 class RegisteredApplication: public Application
 {