1 /* 2 * Copyright 2005, Waldemar Kornewald <wkornew@gmx.net> 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #ifndef PPP_UP_APPLICATION__H 7 #define PPP_UP_APPLICATION__H 8 9 #include <Application.h> 10 #include <String.h> 11 #include <PPPInterfaceListener.h> 12 13 class ConnectionWindow; 14 15 #define APP_SIGNATURE "application/x-vnd.haiku.ppp_up" 16 17 18 class PPPUpApplication : public BApplication { 19 public: 20 PPPUpApplication(const char *interfaceName); 21 22 virtual void ReadyToRun(); 23 24 private: 25 BString fInterfaceName; 26 }; 27 28 29 #endif 30