/*========================================================================= Program: Visualization Library Module: GlrProp.hh Language: C++ Date: $Date$ Version: $Revision$ This file is part of the Visualization Library. No part of this file or its contents may be copied, reproduced or altered in any way without the express written consent of the authors. Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 1993, 1994 =========================================================================*/ // .NAME vlGlrProperty - SGI gl property // .SECTION Description // vlGlrProperty is a concrete implementation of the abstract class vlProperty. // vlGlrProperty interfaces to the Silicon Graphics gl rendering library. #ifndef __vlGlrProperty_hh #define __vlGlrProperty_hh #include "Property.hh" class vlGlrRenderer; class vlGlrProperty : public vlProperty { public: char *GetClassName() {return "vlGlrProperty";}; void Render(vlRenderer *ren); void Render(vlGlrRenderer *ren); }; #endif