From 63c0a33926ee3defa787a1ec62d38c8458015525 Mon Sep 17 00:00:00 2001 From: Don BURNS Date: Fri, 13 Dec 2002 20:29:26 +0000 Subject: [PATCH] Moved TrpageViewer.h to Demos/src/osgtxp --- include/osgTXP/TrPageViewer.h | 59 ----------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 include/osgTXP/TrPageViewer.h diff --git a/include/osgTXP/TrPageViewer.h b/include/osgTXP/TrPageViewer.h deleted file mode 100644 index 86ba05c3d..000000000 --- a/include/osgTXP/TrPageViewer.h +++ /dev/null @@ -1,59 +0,0 @@ -/* ************************************************************************** - * OpenSceneGraph loader for Terrapage format database - * - * That loader is redistributed under the terms listed on Terrain Experts - * website (www.terrex.com/www/pages/technology/technologypage.htm) - * - * "TerraPage is provided as an Open Source format for use by anyone... - * We supply the TerraPage C++ source code free of charge. Anyone - * can use it and redistribute it as needed (including our competitors). - * We do, however, ask that you keep the TERREX copyrights intact." - * - * Copyright Terrain Experts Inc. 1999. - * All Rights Reserved. - * - *****************************************************************************/ - -#ifndef _TRPAGEVIEWER_H_ -#define _TRPAGEVIEWER_H_ - -#include -#include -#include -#include -#include - -#include - -#include - -#include - -#include - -#include - -#include - -namespace txp -{ - /* Paging Viewer - Variant of the regular viewer which knows to call - the Page Manager at the beginning of each app() phase. - */ - class OSGTXP_EXPORT PagingViewer : public osgGLUT::Viewer { - public: - PagingViewer(); - bool Init(OSGPageManager *,txp::OSGPageManager::ThreadMode = txp::OSGPageManager::ThreadNone); - - // called on each frame redraw..return the time in ms for each operation. - virtual float app(unsigned int viewport); - // The default Viewer resets the cameras at the beginning of the run() - // This is annoying. - bool run(); - protected: - OSGPageManager *pageManage; - }; -}; - -#endif