FSM Library - C++ version
Int2IntMap.h
1 /*
2  * Copyright. GaĆ«l Dottel, Christoph Hilken, and Jan Peleska 2016 - 2021
3  *
4  * Licensed under the EUPL V.1.1
5  */
6 #ifndef FSM_FSM_INT2INTMAP_H_
7 #define FSM_FSM_INT2INTMAP_H_
8 
9 #include <map>
10 
11 /*This class is really smaller than in Java because it inherit from std::map*/
12 class Int2IntMap : public std::map<int, int>
13 {
14 public:
19  Int2IntMap(const int maxInput);
20 };
21 #endif //FSM_FSM_INT2INTMAP_H_
Int2IntMap(const int maxInput)
Definition: Int2IntMap.cpp:8
Definition: Int2IntMap.h:12