From c2b84e8f842e98ae6cf975b7e2acdc4ab5c1721f Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Tue, 25 Sep 2012 23:20:25 -0400 Subject: [PATCH] adding array type --- include/fc/array.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/fc/array.hpp diff --git a/include/fc/array.hpp b/include/fc/array.hpp new file mode 100644 index 0000000..f97ffe5 --- /dev/null +++ b/include/fc/array.hpp @@ -0,0 +1,14 @@ +#ifndef _FC_ARRAY_HPP_ +#define _FC_ARRAY_HPP_ + +namespace fc { + + template + class array { + public: + T data[N]; + }; + +} + +#endif // _FC_ARRAY_HPP_