ATLAS Offline Software
AtlasSTLAddReflexDict.h
Go to the documentation of this file.
1 // dear emacs, this is -*- C++ -*-
2 
3 /*
4  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 // Some common classes for general use in ATLAS
8 
9 #include <utility> // for std::pair
10 #include <vector>
11 #include <map>
12 #include <set>
13 #include <string>
14 
15 #include <stdint.h>
16 
17 #include <boost/array.hpp>
18 
19 
20 template struct std::pair<unsigned int, unsigned int>;
21 template struct std::pair<std::string, unsigned int>;
22 template struct std::pair<std::string, std::vector<int> >;
23 template struct std::pair<std::string, std::vector<double> >;
24 template struct std::pair<std::pair<std::string, unsigned int>, std::pair<std::string, unsigned int> >;
25 template struct std::pair<unsigned int, std::vector<float> >;
26 template struct std::pair<unsigned int, std::vector<unsigned int> >;