Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
vsnet_dloadenum.h
Go to the documentation of this file.
1 #ifndef VSNET_DLOADENUM_H
2 #define VSNET_DLOADENUM_H
3 
4 #include <config.h>
5 
6 #include <iostream>
7 #include "vsfilesystem.h"
8 using namespace VSFileSystem;
9 
10 namespace VsnetDownload
11 {
12 /*------------------------------------------------------------*
13 * declaration VsnetDownload::Subcommand
14 *------------------------------------------------------------*/
15 
17 {
27 };
28 
29 std::ostream&operator<<( std::ostream &ostr, Subcommand e );
30 
31 namespace Client
32 {
33 class Manager;
34 
35 /*------------------------------------------------------------*
36 * declaration VsnetDownload::Client::State
37 *------------------------------------------------------------*/
38 
39 enum State
40 {
48 };
49 
50 std::ostream&operator<<( std::ostream &ostr, State s );
51 
52 std::ostream&operator<<( std::ostream &ostr, VSError e );
53 }; //namespace Client
54 }; //namespace VsnetDownload
55 
56 #endif /* VSNET_DLOADENUM_H */
57