VR-Forces 4.0.4 Class Documentation
include/vrfGuiCore/DtVrfModelSetManager.h
Go to the documentation of this file.
00001 /******************************************************************************
00002 ** Copyright (c) 2008 MAK Technologies, Inc.
00003 ** All rights reserved.
00004 ******************************************************************************/
00005 /******************************************************************************
00006 ** $RCSfile: DtVrfModelSetManager.h,v $ $Revision: 1.1 $ $State: Exp $
00007 ******************************************************************************/
00008 
00011 
00013 
00014 #pragma once
00015 
00016 #include <vrfGuiCore/vrfGuiCore.h>
00017 #include <vrvUtil/DtVirtualBaseClass.h>
00018 
00019 #include <boost/signal.hpp>
00020 
00021 class DtModelSet;
00022 
00023 namespace makVrv
00024 {
00025    class DtDe;
00026 }
00027 
00028 namespace makVrf
00029 {
00031    class DT_DLL_VRFGUICORE DtVrfModelSetManager : public makVrv::DtVirtualBaseClass
00032    {
00033    public:
00034       DtVrfModelSetManager(makVrv::DtDe&);
00035       virtual ~DtVrfModelSetManager();
00036 
00038       static DtVrfModelSetManager& instance(makVrv::DtDe& de);
00039 
00040    public:
00042       virtual bool load(const std::string&, bool reset = true, bool signal = true);
00043 
00044       const DtModelSet* modelSet() const
00045       {
00046          return myModelSet;
00047       }
00048 
00049    public:
00050       boost::signal<void ()> signal_modelSetChanged;
00051 
00052    protected:
00053       makVrv::DtDe&   myDe;
00054       DtModelSet*    myModelSet;
00055    };
00056 }

Document ID: Generated on Fri Jun 29 16:33:32 EDT 2012 from SVN revision 116588
Copyright © 2005-2012 VT MÄK Inc. All Rights Reserved (www.mak.com)