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
11class NetworkConnectionConfigHandler : public ConnectionConfigHandler {
12public:
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