00001 /* 00002 * ===================================================================================== 00003 * 00004 * Filename: View.h 00005 * 00006 * Description: Base View logic 00007 * 00008 * Version: 1.0 00009 * Created: 12/19/2009 10:40:44 AM 00010 * Revision: none 00011 * Compiler: gcc 00012 * 00013 * Author: Kail (k), sickboy@anarchy.name 00014 * Company: Ergon 00015 * 00016 * ===================================================================================== 00017 */ 00018 00019 00020 #include "../library.h" 00021 00022 #ifndef VIEW_H 00023 #define VIEW_H 00024 00025 class View{ 00026 Registry *reg; 00027 Request * apr; 00028 public: 00029 std::string htmlTemplate; 00030 View(); 00031 ~View(); 00032 void show(); 00033 }; 00034 00035 #endif
1.5.8