00001 /* 00002 $Id: netvariables.cpp,v 1.3 2001/03/05 09:55:44 mbn Exp $ 00003 00004 ------------------------------------------------------------------------ 00005 ClanLib, the platform independent game SDK. 00006 00007 This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE 00008 version 2. See COPYING for details. 00009 00010 For a total list of contributers see CREDITS. 00011 00012 ------------------------------------------------------------------------ 00013 */ 00014 00015 #include "API/Core/System/cl_assert.h" 00016 #include "API/Network/netvariables.h" 00017 #include "netvariables_generic.h" 00018 00019 CL_NetVariables::CL_NetVariables() 00020 : impl(new CL_NetVariables_Generic) 00021 { 00022 } 00023 00024 CL_NetVariables::~CL_NetVariables() 00025 { 00026 } 00027 00028 void CL_NetVariables::add_bool(bool *var, int array) 00029 { 00030 cl_assert(false); 00031 } 00032 00033 void CL_NetVariables::add_int(int *var, int array) 00034 { 00035 cl_assert(false); 00036 } 00037 00038 void CL_NetVariables::add_short(short *var, int array) 00039 { 00040 cl_assert(false); 00041 } 00042 00043 void CL_NetVariables::add_float(float *var, int array) 00044 { 00045 cl_assert(false); 00046 } 00047 00048 void CL_NetVariables::add_double(double *var, int array) 00049 { 00050 cl_assert(false); 00051 } 00052 00053 void CL_NetVariables::add_vars(CL_NetVariables *variables, int array) 00054 { 00055 cl_assert(false); 00056 } 00057 00058 bool CL_NetVariables::is_different() 00059 { 00060 cl_assert(false); 00061 return false; 00062 } 00063 00064 void CL_NetVariables::save_all(CL_OutputSource *msg) 00065 { 00066 cl_assert(false); 00067 } 00068 00069 void CL_NetVariables::load_all(CL_InputSource *msg) 00070 { 00071 cl_assert(false); 00072 } 00073 00074 void CL_NetVariables::save_diff(CL_OutputSource *msg) 00075 { 00076 cl_assert(false); 00077 } 00078 00079 void CL_NetVariables::load_diff(CL_InputSource *msg) 00080 { 00081 cl_assert(false); 00082 }
1.2.6 written by Dimitri van Heesch,
© 1997-2001