peerplays-fc/include/fc/array.hpp

15 lines
173 B
C++
Raw Normal View History

2012-09-26 03:20:25 +00:00
#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_