/* orxonox - the future of 3D-vertical-scrollers Copyright (C) 2004 orx This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. ### File Specific: main-programmer: Christoph Renner co-programmer: ... */ #include "synchronizeable_var.h" #include "netdefs.h" #include /** * standard constructor * @todo this constructor is not jet implemented - do it */ SynchronizeableVar::SynchronizeableVar ( void * ptrIn, void * ptrOut, std::string name, int length, int permission, int priority) { assert( ptrIn ); assert( ptrOut ); this->ptrIn = ptrIn; this->ptrOut = ptrOut; this->length = length; this->permission = permission; this->priority = priority; this->realPriority = priority; this->name = name; this->bWatched = false; this->changed = false; } /** * standard deconstructor */ SynchronizeableVar::~SynchronizeableVar () { }