VR-Forces 4.2 Class Documentation
DtDisDictionaryInterface.h
Go to the documentation of this file.
1 /*******************************************************************************
2 ** Copyright (c) 2005 MAK Technologies, Inc.
3 ** All rights reserved.
4 *******************************************************************************/
5 
8 
9 #pragma once
10 
11 #include <vrfGuiCore/vrfGuiCore.h>
12 #include <vrvCore/DtDe.h>
13 
14 #include <map>
15 #include <string>
16 
17 class DtEntityType;
18 
19 namespace makVrf
20 {
23  {
24  public:
25  DtDisDictionaryInterface(makVrv::DtDe& de) : myDe(de) {};
27 
28  virtual bool loadFromFile(const std::string& file) = 0;
29 
30  virtual bool countryList(std::map<int, std::string>& list) = 0;
31  virtual bool kindList(std::map<int, std::string>& list) = 0;
32  virtual bool domainList(int kind, std::map<int, std::string>& list) = 0;
33  virtual bool categoryList(int kind, int domain, std::map<int, std::string>& list) = 0;
34  virtual bool subcategoryList(int kind, int domain, int country, int cat, std::map<int, std::string>& list) = 0;
35  virtual bool specificList(int kind, int domain, int country, int cat, int subcat, std::map<int, std::string>& list) = 0;
36  virtual bool extraList(int kind, int domain, int country, int cat, int subcat, int specific, std::map<int, std::string>& list) = 0;
37 
39  virtual std::string enumerationStrings(const DtEntityType&) = 0;
40 
42  virtual std::string country(int) const = 0;
43 
45  virtual std::string displayName(const DtEntityType&) = 0;
46 
47  protected:
48  makVrv::DtDe& myDe;
49  };
50 }

Document ID: Generated on Sun Nov 24 19:49:21 EST 2013 from SVN revision 133924
Copyright © 2005-2013 VT MÄK. All Rights Reserved (www.mak.com)