var.hpp 追加
| @@ -17,5 +17,6 @@ | ||
| 17 | 17 | #define _ROAST_HAO_NS_END _ROAST_NS_END } |
| 18 | 18 | |
| 19 | 19 | #include "roast/hao/arith/arith.hpp" |
| 20 | +#include "roast/hao/var.hpp" | |
| 20 | 21 | |
| 21 | 22 | #endif//__SFJP_ROAST__hao__hao_HPP__ |
| @@ -0,0 +1,23 @@ | ||
| 1 | +// Roast+ License | |
| 2 | + | |
| 3 | +/* | |
| 4 | + HAO is abbreviation of "High-level Arithmetic Operator". | |
| 5 | + | |
| 6 | +*/ | |
| 7 | +#ifndef __SFJP_ROAST__hao__var_HPP__ | |
| 8 | +#define __SFJP_ROAST__hao__var_HPP__ | |
| 9 | + | |
| 10 | +_ROAST_HAO_NS_START | |
| 11 | + | |
| 12 | +// Variable | |
| 13 | +template <typename T> | |
| 14 | +class Var | |
| 15 | +{ | |
| 16 | + | |
| 17 | +}; | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | +_ROAST_HAO_NS_END | |
| 22 | + | |
| 23 | +#endif//__SFJP_ROAST__hao__var_HPP__ |