TypeHelpers.h
Go to the documentation of this file.
1 /*************************************************************************
2 > File Name: TypeHelpers.h
3 > Project Name: CubbyFlow
4 > Author: Chan-Ho Chris Ohk
5 > Purpose: Type helpers for CubbyFlow.
6 > Created Time: 2017/03/03
7 > Copyright (c) 2018, Chan-Ho Chris Ohk
8 *************************************************************************/
9 #ifndef CUBBYFLOW_TYPE_HELPERS_H
10 #define CUBBYFLOW_TYPE_HELPERS_H
11 
12 namespace CubbyFlow
13 {
15  template <typename T>
16  struct ScalarType
17  {
18  typedef T value;
19  };
20 }
21 
22 #endif
T value
Definition: TypeHelpers.h:18
Returns the type of the value itself.
Definition: TypeHelpers.h:16
Definition: pybind11Utils.h:24