Wiselib
wiselib.testing/external_interface/pc/pc_wiselib_application.h
Go to the documentation of this file.
00001 // vim: set noexpandtab ts=4 sw=4:
00002 
00003 #ifndef PC_WISELIB_APPLICATION_H
00004 #define PC_WISELIB_APPLICATION_H
00005 
00006 #include "external_interface/wiselib_application.h"
00007 #include "external_interface/pc/pc_os.h"
00008 
00009 namespace wiselib {
00010    template<typename Application_P>
00011    class WiselibApplication<PCOsModel, Application_P> {
00012       public:
00013          typedef PCOsModel OsModel;
00014          typedef Application_P Application;
00015          
00016          void init(PCOs& os) {
00017             Application *app = new Application();
00018             app->init(os);
00019          }
00020    };
00021 }
00022 
00023 #endif // PC_WISELIB_APPLICATION_H
00024 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines