diff options
Diffstat (limited to 'Swiften/Network/NetworkEnvironment.h')
-rw-r--r-- | Swiften/Network/NetworkEnvironment.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Swiften/Network/NetworkEnvironment.h b/Swiften/Network/NetworkEnvironment.h index 348bdb9..fbff0cb 100644 --- a/Swiften/Network/NetworkEnvironment.h +++ b/Swiften/Network/NetworkEnvironment.h @@ -12,13 +12,12 @@ #include <Swiften/Network/NetworkInterface.h> namespace Swift { + class NetworkEnvironment { + public: + virtual ~NetworkEnvironment(); -class NetworkEnvironment { -public: - virtual ~NetworkEnvironment() {}; - virtual std::vector<NetworkInterface::ref> getNetworkInterfaces() = 0; - - boost::signal <void (NetworkInterface::ref)> onNetworkInterfaceChange; -}; + virtual std::vector<NetworkInterface> getNetworkInterfaces() const = 0; + HostAddress getLocalAddress() const; + }; } |