root/src/add-ons/kernel/file_systems/netfs/headers/shared/ConnectionFactory.h
// ConnectionFactory.h

#ifndef NET_FS_CONNECTION_FACTORY_H
#define NET_FS_CONNECTION_FACTORY_H

#include <SupportDefs.h>

class Connection;
class ConnectionListener;

class ConnectionFactory {
public:
                                                                ConnectionFactory();
                                                                ~ConnectionFactory();

                        status_t                        CreateConnection(const char* type,
                                                                        const char* parameters,
                                                                        Connection** connection);
};

#endif  // NET_FS_CONNECTION_FACTORY_H