OpenCOVER
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 <net/tokenbuffer_serializer.h>
10#include <osg/Matrix>
11#include <util/coExport.h>
12
13namespace covise {
14template <>
15void COVEREXPORT serialize<osg::Matrix>(covise::TokenBuffer &tb, const osg::Matrix &value);
16
17template <>
18void COVEREXPORT deserialize<osg::Matrix>(covise::TokenBuffer &tb, osg::Matrix &value);
19}
20
21
22#endif // !1
Definition: coTabletUI.h:51