COMBINATORIAL_BLAS  1.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StackEntry.h
Go to the documentation of this file.
1 #ifndef _STACK_ENTRY_H
2 #define _STACK_ENTRY_H
3 
4 #include <utility>
5 using namespace std;
6 
7 template <class T1, class T2>
8 class StackEntry
9 {
10 public:
11  T1 value;
12  T2 key;
13 };
14 
15 #endif