Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/synchronizeable_var/synchronizeable_bool.cc @ 7446

Last change on this file since 7446 was 7446, checked in by rennerc, 18 years ago

implemented some varChangeHandler functions

File size: 1.3 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Christoph Renner
13   co-programmer: ...
14*/
15
16
17#include "synchronizeable_bool.h"
18
19
20/**
21 * standard constructor
22 */
23SynchronizeableBool::SynchronizeableBool( bool * ptrIn, bool * ptrOut, std::string name, int permission, int priority) : SynchronizeableVar( ptrIn, ptrOut, name, 0, permission, priority )
24{
25  this->vPtrIn = ptrIn;
26  this->vPtrOut = ptrOut;
27}
28
29
30/**
31 * standard deconstructor
32*/
33SynchronizeableBool::~SynchronizeableBool ()
34{
35}
36
37/**
38 * write var data to byte buffer
39 * @param buf pointer to write to
40 * @param maxLength writeToBuf will not write more than maxLength bytes
41 * @return number bytes written
42 */
43int SynchronizeableBool::writeToBuf( byte * buf, int maxLength )
44{
45#warning implement this
46}
47
48/**
49 * read var data from byte buffer
50 * @param buf pointer to read from
51 * @param maxLength readFromBuf will not read more than maxLength bytes
52 * @return number bytes read
53 */
54int SynchronizeableBool::readFromBuf( byte * buf, int maxLength )
55{
56#warning implement this
57}
Note: See TracBrowser for help on using the repository browser.