00001 00033 #ifndef LL_LLFLOATERTEST_H 00034 #define LL_LLFLOATERTEST_H 00035 00036 #include "llfloater.h" 00037 00038 class LLFloaterTestImpl; 00039 00040 class LLFloaterTest 00041 { 00042 public: 00043 static void show(void* unused); 00044 00045 private: 00046 LLFloaterTest(); 00047 ~LLFloaterTest(); 00048 00049 LLFloaterTestImpl& impl; 00050 }; 00051 00052 class LLFloaterSimple : public LLFloater 00053 { 00054 public: 00055 LLFloaterSimple(const std::string& filename); 00056 }; 00057 00058 #endif