00001 /* 00002 * ===================================================================================== 00003 * 00004 * Filename: Bootstrap.h 00005 * 00006 * Description: Bootstrap proto file. 00007 * 00008 * Version: 1.0 00009 * Created: 10/13/2009 03:51:32 PM 00010 * Revision: none 00011 * Compiler: gcc 00012 * 00013 * Author: Kail (k), sickboy@anarchy.name 00014 * Company: Ergon 00015 * 00016 * ===================================================================================== 00017 */ 00018 00019 #include "CPPFrame/library.h" 00020 #ifndef BOOTSTRAP_H 00021 #define BOOTSTRAP_H 00022 00023 class Bootstrap{ 00024 Request apr; 00025 Registry *reg; 00026 public: 00027 Bootstrap(); 00028 ~Bootstrap(); 00029 void run(); 00030 }; 00031 00032 #endif
1.5.8