1// ConnectionListenerFactory.h
2
3#ifndef NET_FS_CONNECTION_LISTENER_FACTORY_H
4#define NET_FS_CONNECTION_LISTENER_FACTORY_H
5
6#include <SupportDefs.h>
7
8class Connection;
9class ConnectionListener;
10
11class ConnectionListenerFactory {
12public:
13								ConnectionListenerFactory();
14								~ConnectionListenerFactory();
15
16			status_t			CreateConnectionListener(const char* type,
17									const char* parameters,
18									ConnectionListener** connectionListener);
19};
20
21#endif	// NET_FS_CONNECTION_LISTENER_FACTORY_H
22