![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2010 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: DtAttributeGroupTemplateInterface.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *********************************************************************/ 00008 #pragma once 00009 00013 00014 #include <vrvVrlQt/vrvVrlQt.h> 00015 00016 namespace makVrv 00017 { 00020 class DT_DLL_VRVVRLQT DtAttributeGroupTemplateInterface 00021 { 00022 public: 00023 virtual ~DtAttributeGroupTemplateInterface(); 00024 00027 virtual void addAttributeGroupTemplate(const std::string& groupName, 00028 const std::string& templateName) = 0; 00029 00030 virtual void removeAttributeGroupTemplate(const std::string& groupName, 00031 const std::string& templateName) = 0; 00032 00033 virtual void setAttributeGroupTemplateStatus(const std::string& groupName, 00034 const std::string& templateName, bool onOff) = 0; 00035 }; 00036 } 00037