00001 /*---------------------------------------------------------------------------*\ 00002 * OpenSG * 00003 * * 00004 * * 00005 * Copyright (C) 2000-2002 by the OpenSG Forum * 00006 * * 00007 * www.opensg.org * 00008 * * 00009 * contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de * 00010 * * 00011 \*---------------------------------------------------------------------------*/ 00012 /*---------------------------------------------------------------------------*\ 00013 * License * 00014 * * 00015 * This library is free software; you can redistribute it and/or modify it * 00016 * under the terms of the GNU Library General Public License as published * 00017 * by the Free Software Foundation, version 2. * 00018 * * 00019 * This library is distributed in the hope that it will be useful, but * 00020 * WITHOUT ANY WARRANTY; without even the implied warranty of * 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 00022 * Library General Public License for more details. * 00023 * * 00024 * You should have received a copy of the GNU Library General Public * 00025 * License along with this library; if not, write to the Free Software * 00026 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * 00027 * * 00028 \*---------------------------------------------------------------------------*/ 00029 /*---------------------------------------------------------------------------*\ 00030 * Changes * 00031 * * 00032 * * 00033 * * 00034 * * 00035 * * 00036 * * 00037 \*---------------------------------------------------------------------------*/ 00038 00039 #ifdef OSG_DOC_FILES_IN_MODULE 00040 00043 #endif 00044 00045 #include <stdlib.h> 00046 #include <stdio.h> 00047 00048 #include "OSGConfig.h" 00049 #include "OSGFieldContainer.h" 00050 00051 OSG_USING_NAMESPACE 00052 00053 FieldContainerType FieldContainer::_type("FieldContainer"); 00054 00055 /*-------------------------------------------------------------------------*/ 00056 /* Get */ 00057 00058 FieldContainerType &FieldContainer::getType(void) 00059 { 00060 return _type; 00061 } 00062 00063 const FieldContainerType &FieldContainer::getType(void) const 00064 { 00065 return _type; 00066 } 00067 00068 /*-------------------------------------------------------------------------*/ 00069 /* Binary Access */ 00070 00071 UInt32 FieldContainer::getBinSize(const BitVector &) 00072 { 00073 return 0; 00074 } 00075 00076 void FieldContainer::copyToBin( BinaryDataHandler &, 00077 const BitVector &) 00078 { 00079 } 00080 00081 void FieldContainer::copyFromBin( BinaryDataHandler &, 00082 const BitVector &) 00083 { 00084 } 00085 00086 /*-------------------------------------------------------------------------*/ 00087 /* Changed */ 00088 00089 void FieldContainer::changed(BitVector OSG_CHECK_ARG(whichField), 00090 UInt32 OSG_CHECK_ARG(origin )) 00091 { 00092 // fprintf(stderr, "FC Changed %d %d\n", whichField, fromSync); 00093 } 00094 00095 /*-------------------------------------------------------------------------*/ 00096 /* MT Destruction */ 00097 00098 void FieldContainer::onDestroy(void) 00099 { 00100 } 00101 00102 #if defined(OSG_FIXED_MFIELDSYNC) 00103 void FieldContainer::onDestroyAspect(UInt32 uiId, UInt32 uiAspect) 00104 { 00105 } 00106 #endif 00107 00108 /*-------------------------------------------------------------------------*/ 00109 /* cvs id's */ 00110 00111 #ifdef __sgi 00112 #pragma set woff 1174 00113 #endif 00114 00115 #ifdef OSG_LINUX_ICC 00116 #pragma warning( disable : 177 ) 00117 #endif 00118 00119 namespace 00120 { 00121 static Char8 cvsid_cpp[] = "@(#)$Id: $"; 00122 static Char8 cvsid_hpp[] = OSGFIELDCONTAINER_HEADER_CVSID; 00123 static Char8 cvsid_inl[] = OSGFIELDCONTAINER_INLINE_CVSID; 00124 }
1.4.3