diff options
| author | Kevin Smith <git@kismith.co.uk> | 2011-12-13 08:50:39 (GMT) |
|---|---|---|
| committer | Kevin Smith <git@kismith.co.uk> | 2011-12-13 08:50:39 (GMT) |
| commit | 8414b9b6dd1ecf9af622cb291934279c3c52a6a4 (patch) | |
| tree | 74066a5012d5dc5b177946a9c268e47f39fb4d9b | |
| parent | 81c09a0f6a3e87b078340d7f35d0dea4c03f3a6d (diff) | |
| download | swift-contrib-8414b9b6dd1ecf9af622cb291934279c3c52a6a4.zip swift-contrib-8414b9b6dd1ecf9af622cb291934279c3c52a6a4.tar.bz2 | |
Remove a warning
| -rw-r--r-- | Swiften/Network/NetworkFactories.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Network/NetworkFactories.h b/Swiften/Network/NetworkFactories.h index ebb6d62..c8009a6 100644 --- a/Swiften/Network/NetworkFactories.h +++ b/Swiften/Network/NetworkFactories.h @@ -1,38 +1,38 @@ /* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once namespace Swift { class TimerFactory; class ConnectionFactory; class DomainNameResolver; class ConnectionServerFactory; class NATTraverser; class XMLParserFactory; class TLSContextFactory; class CertificateFactory; class ProxyProvider; class EventLoop; /** * An interface collecting network factories. */ class NetworkFactories { public: virtual ~NetworkFactories(); virtual TimerFactory* getTimerFactory() const = 0; virtual ConnectionFactory* getConnectionFactory() const = 0; virtual DomainNameResolver* getDomainNameResolver() const = 0; virtual ConnectionServerFactory* getConnectionServerFactory() const = 0; virtual NATTraverser* getNATTraverser() const = 0; virtual XMLParserFactory* getXMLParserFactory() const = 0; virtual TLSContextFactory* getTLSContextFactory() const = 0; virtual ProxyProvider* getProxyProvider() const = 0; - virtual EventLoop* getEventLoop() const {}; + virtual EventLoop* getEventLoop() const = 0; }; } |
Swift