Line data Source code
1 :
2 : /* Copyright (c) 2009-2015, Stefan Eilemann <eile@equalizergraphics.com>
3 : * Daniel Nachbaur <danielnachbaur@gmail.com>
4 : *
5 : * This library is free software; you can redistribute it and/or modify it under
6 : * the terms of the GNU Lesser General Public License version 2.1 as published
7 : * by the Free Software Foundation.
8 : *
9 : * This library is distributed in the hope that it will be useful, but WITHOUT
10 : * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 : * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12 : * details.
13 : *
14 : * You should have received a copy of the GNU Lesser General Public License
15 : * along with this library; if not, write to the Free Software Foundation, Inc.,
16 : * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 : */
18 :
19 : #include "systemPipe.h"
20 :
21 : #include "pipe.h"
22 :
23 : namespace eq
24 : {
25 2 : SystemPipe::SystemPipe(Pipe* parent)
26 : : _maxOpenGLVersion(fabric::AUTO)
27 2 : , _pipe(parent)
28 : {
29 2 : LBASSERT(_pipe);
30 2 : }
31 :
32 2 : SystemPipe::~SystemPipe()
33 : {
34 2 : }
35 :
36 0 : EventOCommand SystemPipe::sendError(const uint32_t error)
37 : {
38 0 : return _pipe->sendError(error);
39 : }
40 30 : }
|