#ifndef _FC_ARRAY_HPP_ #define _FC_ARRAY_HPP_ namespace fc { template class array { public: T data[N]; }; } #endif // _FC_ARRAY_HPP_