Sha256: e6a15720c2d9f0ef9091a0d418e1d4f2c6b7332d6024b9f19ed91ec8b29c29dd
Contents?: true
Size: 323 Bytes
Versions: 7
Compression:
Stored size: 323 Bytes
Contents
#ifndef __FGDB_PRIMITIVE_HPP__ #define __FGDB_PRIMITIVE_HPP__ #include "filegdb.hpp" namespace filegdb { template<typename T, typename K> class primitive : public base<K> { public: primitive(T *value) : _value(value) {} virtual ~primitive() {} protected: primitive() {} T *_value; }; } #endif
Version data entries
7 entries across 7 versions & 1 rubygems