orca-robotics INTRODUCTION Overview Download and Install Quick Start Documentation Publications REPOSITORY Interfaces Components Libraries Utilities Software Map DEVELOPER Tutorials Examples Dev Guide Dashboard Wiki login/pass: orca/orca PEOPLE Contributors Users Project Download Mailing lists
|
guielement3d.h00001 /* 00002 * Orca-Robotics Project: Components for robotics 00003 * http://orca-robotics.sf.net/ 00004 * Copyright (c) 2004-2008 Alex Brooks 00005 * 00006 * This copy of Orca is licensed to you under the terms described in 00007 * the LICENSE file included in this distribution. 00008 * 00009 */ 00010 00011 #ifndef ORCAGUI3D_GUIELEMENT3D_H 00012 #define ORCAGUI3D_GUIELEMENT3D_H 00013 00014 #include <QGLWidget> 00015 #include <orcaqgui/guielement.h> 00016 00017 namespace orcaqgui3d { 00018 00022 class GuiElement3d : public orcaqgui::GuiElement 00023 { 00024 00025 public: 00026 00027 virtual ~GuiElement3d() {} 00028 00030 virtual void paint( QGLWidget *p ) {}; 00031 00032 private: 00033 00034 00035 }; 00036 00037 } 00038 00039 #endif |
Webmaster: Tobias Kaupp (tobasco at users.sourceforge.net)