OpenCOVER
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MatrixSerializer.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 #ifndef MATRIX_SERIALIZER_H
8 #define MATRIX_SERIALIZER_H
9 #include <vrbclient/SharedStateSerializer.h>
10 #include <osg/Matrix>
11 #include <util/coExport.h>
12 
13 namespace vrb {
14 template <>
15 void COVEREXPORT serialize<osg::Matrix>(covise::TokenBuffer &tb, const osg::Matrix &value);
16 
17 template <>
18 void COVEREXPORT deserialize<osg::Matrix>(covise::TokenBuffer &tb, osg::Matrix &value);
19 }
20 
21 
22 #endif // !1