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
savenet_util.h
Go to the documentation of this file.
1 #ifndef __SAVENET_UTIL_H
2 #define __SAVENET_UTIL_H
3 
4 #include <string>
5 #include "networking/clientptr.h"
6 
7 using std::string;
8 
9 namespace SaveNetUtil
10 {
11 //void SaveFiles( Cockpit * cp, string savestr, string xmlstr, string path);
12 void GetSaveBuffer( string savestr, string xmlstr, char *buffer );
13 void GetSaveStrings( int numplayer, string &savestr, string &xmlstr, bool savevars );
14 void GetSaveStrings( ClientPtr clt, string &savestr, string &xmlstr, bool savevars );
15 }
16 
17 #endif
18