diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-10-13 09:00:01 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-10-13 09:00:01 -0600 |
commit | 0aed5e4eb3af56ba0bf9ceb0343c262a7427b6ba (patch) | |
tree | e63bc37eb35cd10bc012d4d54fe7d76a81a5edc1 /src/net/net.h | |
parent | 5987d6ff5e737d72193089418a3bf31f9f5a5c8f (diff) | |
download | mana-0aed5e4eb3af56ba0bf9ceb0343c262a7427b6ba.tar.gz mana-0aed5e4eb3af56ba0bf9ceb0343c262a7427b6ba.tar.bz2 mana-0aed5e4eb3af56ba0bf9ceb0343c262a7427b6ba.tar.xz mana-0aed5e4eb3af56ba0bf9ceb0343c262a7427b6ba.zip |
Add an asynchronous download class
And use it to download news, updates, and the server list.
Diffstat (limited to 'src/net/net.h')
-rw-r--r-- | src/net/net.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/net.h b/src/net/net.h index 5b0c92f4..7a49121d 100644 --- a/src/net/net.h +++ b/src/net/net.h @@ -19,11 +19,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "net/serverinfo.h" - #ifndef NET_H #define NET_H +class ServerInfo; + namespace Net { class AdminHandler; |