COMBINATORIAL_BLAS  1.6
StackEntry.h
Go to the documentation of this file.
1 #ifndef _STACK_ENTRY_H
2 #define _STACK_ENTRY_H
3 
4 #include <utility>
5 
6 namespace combblas {
7 
8 template <class T1, class T2>
9 class StackEntry
10 {
11 public:
12  T1 value;
13  T2 key;
14 };
15 
16 }
17 
18 #endif
Definition: StackEntry.h:9
Definition: CCGrid.h:4
T1 value
Definition: StackEntry.h:12
T2 key
Definition: StackEntry.h:13