![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2007 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtGdbSurfacesInterface.h,v $ $Revision: 1.12 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 #include <vrvCoreQt/vrvCoreQt.h> 00015 #include <vrvCore/DtTerrainPatch.h> 00016 00017 namespace makVrv 00018 { 00022 class DT_DLL_VRVCOREQT DtGdbSurfacesInterface 00023 { 00024 public: 00026 virtual void setSurfaceState(DtTerrainPatch::GdbSurface surfaceId, 00027 bool state) = 0; 00028 00030 virtual ~DtGdbSurfacesInterface(); 00031 00033 virtual void addGdbSurface(DtTerrainPatch::GdbSurface surfaceId, 00034 bool isOn) = 0; 00035 00037 boost::signal<void (DtTerrainPatch::GdbSurface id, bool isOn)> 00038 signal_surfaceChanged; 00039 }; 00040 }