1 /* 2 * Copyright 2016, Rene Gollent, rene@gollent.com. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef NETWORK_CONNECTION_CONFIG_HANDLER_H 6 #define NETWORK_CONNECTION_CONFIG_HANDLER_H 7 8 #include "ConnectionConfigHandler.h" 9 10 11 class NetworkConnectionConfigHandler : public ConnectionConfigHandler { 12 public: 13 NetworkConnectionConfigHandler(); 14 virtual ~NetworkConnectionConfigHandler(); 15 16 virtual status_t CreateView(TargetHostInterfaceInfo* info, 17 ConnectionConfigView::Listener* listener, 18 ConnectionConfigView*& _view); 19 }; 20 21 22 #endif // NETWORK_CONNECTION_CONFIG_HANDLER_H 23