17 lines
286 B
C++
17 lines
286 B
C++
// SPDX-License-Identifier: LGPL-2.1-only
|
|
// Copyright (C) 2021 James Hogan <james@albanarts.com>
|
|
|
|
#include <osgXR/View>
|
|
|
|
using namespace osgXR;
|
|
|
|
View::View(osgViewer::GraphicsWindow *window, osgViewer::View *osgView) :
|
|
_window(window),
|
|
_osgView(osgView)
|
|
{
|
|
}
|
|
|
|
View::~View()
|
|
{
|
|
}
|