#ifndef CCArray_H #define CCArray_H #pragma once #include "array" namespace CTL { template class Array:public std::array{ public: using std::array::array; }; } #endif