blob: d376308dd6efac46b90c85f7abf09ebafe8c1377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <boost/shared_ptr.hpp>
#include <boost/signal.hpp>
#include "Swiften/Network/IncomingConnection.h"
namespace Swift {
class ConnectionServer {
public:
virtual ~ConnectionServer();
boost::signal<void (boost::shared_ptr<IncomingConnection>)> onNewConnection;
};
}
|