SST/macro
coordinates.h
Go to the documentation of this file.
1 #ifndef COORDINATES_H
2 #define COORDINATES_H
3 
4 #include <vector>
5 #include <string>
6 
7 namespace sstmac {
8 namespace hw {
9 
10 class coordinates :
11  public std::vector<int>
12 {
13  public:
14  coordinates(const std::vector<int>& vec);
15 
16  coordinates();
17 
18  coordinates(int nelem);
19 
20  std::string
21  to_string() const;
22 
23 };
24 
25 }
26 }
27 
28 #endif // COORDINATES_H
29 
SUMI = Simulator unified messagine interface It is also the name for a solid ink in Japanese - i...
std::string to_string() const