![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtExtractPropsInterface.h,v $ $Revision: 1.15 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 #include <vrvOsgQt/vrvOsgQt.h> 00015 #include <vrvCoreQt/DtPropTypeComboBox.h> 00016 #include <set> 00017 00018 namespace makVrv 00019 { 00022 class DT_DLL_VRVOSGQT DtExtractPropsInterface 00023 { 00024 public: 00025 00026 typedef std::set<std::string> SearchCandidateSet; 00027 00029 DtExtractPropsInterface(); 00030 00032 virtual ~DtExtractPropsInterface(); 00033 00035 virtual void addExtraction(const std::string& searchExp, const std::string& type) = 0; 00036 00038 virtual void reset() = 0; 00039 00040 //Set the set of search candidates. 00041 virtual void setSearchCandidateSet(const SearchCandidateSet& scSet) = 0; 00042 00045 boost::signal<void (const std::string& expression, bool isRegEx, 00046 const std::string& type, const std::string& modelDef)> signal_extractProps; 00047 00050 boost::signal<void ()> signal_extractAllExternalRefs; 00051 00053 virtual void setValidSchemas(const std::vector<std::string>& schemaNames) = 0; 00054 }; 00055 }