Fixed compilation with latest Swiften
This commit is contained in:
parent
6ca2c3a931
commit
ff27ec0233
2 changed files with 6 additions and 0 deletions
|
@ -18,6 +18,7 @@ DummyNetworkFactories::DummyNetworkFactories(EventLoop* eventLoop) {
|
|||
domainNameResolver = new PlatformDomainNameResolver(eventLoop);
|
||||
connectionServerFactory = new DummyConnectionServerFactory(eventLoop);
|
||||
m_platformXMLParserFactory = new PlatformXMLParserFactory();
|
||||
this->eventLoop = eventLoop;
|
||||
}
|
||||
|
||||
DummyNetworkFactories::~DummyNetworkFactories() {
|
||||
|
|
|
@ -41,6 +41,10 @@ namespace Swift {
|
|||
return m_platformXMLParserFactory;
|
||||
}
|
||||
|
||||
EventLoop *getEventLoop() const {
|
||||
return eventLoop;
|
||||
}
|
||||
|
||||
Swift::TLSContextFactory* getTLSContextFactory() const {
|
||||
return 0;
|
||||
}
|
||||
|
@ -55,5 +59,6 @@ namespace Swift {
|
|||
ConnectionFactory* connectionFactory;
|
||||
DomainNameResolver* domainNameResolver;
|
||||
ConnectionServerFactory* connectionServerFactory;
|
||||
EventLoop *eventLoop;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue