adding array type

This commit is contained in:
Daniel Larimer 2012-09-25 23:20:25 -04:00
parent 5877435927
commit c2b84e8f84

14
include/fc/array.hpp Normal file
View file

@ -0,0 +1,14 @@
#ifndef _FC_ARRAY_HPP_
#define _FC_ARRAY_HPP_
namespace fc {
template<typename T, size_t N>
class array {
public:
T data[N];
};
}
#endif // _FC_ARRAY_HPP_