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_