aboutsummaryrefslogtreecommitdiff
path: root/PDContainer/include/HMultiMap.h
blob: 0c7a9f7a4086db0cc21726e042a7cac217cbef87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// *********************(c)*2004*********************>
// -holzilib--holzilib--holzilib--holzilib--holzilib->
// ++++PD-External++by+Georg+Holzmann++grh@gmx.at++++>
//
// PDContainer: 
// this is a port of the containers from the C++ STL
// (Standard Template Library)
// for usage see the documentation and PD help files
// for license see readme.txt
//
// HMultiMap.h


#ifndef _h_multi_map_h__
#define _h_multi_map_h__

#include "include/MapBase.h"

using std::multimap;

//---------------------------------------------------
/* this is the class of the map
 */
class HMultiMap : 
public MapBase< multimap<Element,Element>, multimap<Element,Element>::iterator >
{

 private:

  /* Copy Construction is not allowed
   */
  HMultiMap(const HMultiMap &src)
    { }

  /* assignement operator is not allowed
   */
  const HMultiMap& operator = (const HMultiMap&)
    { return *this; }

 public:

  /* Constructor
   * no namespace
   */
  HMultiMap()
    { dataname_ = "h_multimap"; }

  /* Constructor
   * with a namespace
   */
  HMultiMap(string h_namespace)
    {
      dataname_ = "h_multimap";
      setNamespace(h_namespace); 
    }

  /* Destructor
   */  
  virtual ~HMultiMap() { }
  
  /* Add a key-value pair
  */
  virtual void add(Element key, Element value)
  {
    this->data_[this->h_namespace_].insert(std::pair<Element,Element>(key,value));
  }

  /* Get the Nr. of values from the specific Key
   */
  virtual int getNr(Element &key) const
    { return data_[h_namespace_].count(key); }

  /* Get a value from the specific Key with the index number
   * index starts with 0
   */
  virtual Element &get(Element &key, int index) const;
};


#endif   // _h_multi_map_h__