VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrvCore
DtDeSettingsManager.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2018 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
9
10
#pragma once
11
#include <
vrvCore/vrvCore.h
>
12
#include <
vrvUtil/DtVirtualBaseClass.h
>
13
14
#include <map>
15
#include <string>
16
17
namespace
makVrv
18
{
19
20
class
DtDe;
21
class
DtDeSettings;
22
25
class
DT_DLL_VRVCORE
DtDeSettingsManager
:
public
DtVirtualBaseClass
26
{
27
public
:
29
static
DtDeSettingsManager
& instance(
DtDe
& de);
30
32
virtual
~
DtDeSettingsManager
();
33
35
virtual
void
createSettings(
const
std::string& settingsType,
const
std::string& settingsExt);
36
40
virtual
DtDeSettings
* findSettings(
const
std::string& settingsType);
41
46
virtual
DtDeSettings
* findSettingsByExtension(
const
std::string& settingsEx);
47
53
virtual
void
registerSettings(
DtDeSettings
* settings);
54
55
protected
:
56
58
DtDeSettingsManager
(
DtDe
&);
59
60
typedef
std::map<std::string,DtDeSettings*>
SettingsMap
;
61
typedef
std::map<std::string, std::string>
SettingsToFileMap
;
62
63
DtDe
&
myDe
;
64
SettingsMap
mySettings
;
65
};
66
}
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)