/* * Copyright 2005, Waldemar Kornewald * Distributed under the terms of the MIT License. */ #ifndef PPP_UP_APPLICATION__H #define PPP_UP_APPLICATION__H #include #include #include class ConnectionWindow; #define APP_SIGNATURE "application/x-vnd.haiku.ppp_up" class PPPUpApplication : public BApplication { public: PPPUpApplication(const char *interfaceName); virtual void ReadyToRun(); private: BString fInterfaceName; }; #endif