summaryrefslogtreecommitdiffstats
blob: ef4eec954ee524137afea304cd02bf87138288a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef SWIFTEN_ConnectionFactory_H
#define SWIFTEN_ConnectionFactory_H

namespace Swift {
	class Connection;

	class ConnectionFactory {
		public:
			virtual ~ConnectionFactory();

			virtual Connection* createConnection() = 0;
	};
}

#endif