Wexus2 0.20
|
00001 00002 /* 00003 * Copyright (c) 2011 Aleksander B. Demko 00004 * This source code is distributed under the MIT license. 00005 * See the accompanying file LICENSE.MIT.txt for details. 00006 */ 00007 00008 #ifndef __INCLUDED_WEBAPPS_BLOGAPP_H__ 00009 #define __INCLUDED_WEBAPPS_BLOGAPP_H__ 00010 00011 #include <wexus/Application.h> 00012 00013 namespace blogapp 00014 { 00015 class BlogApp; 00016 } 00017 00018 /** 00019 * A basic blogging application. 00020 * 00021 * @author Aleksander Demko 00022 */ 00023 class blogapp::BlogApp : public wexus::Application 00024 { 00025 public: 00026 BlogApp(void); 00027 }; 00028 00029 #endif 00030