Sha256: 1f26b1dcf4a6e94603cc3b44964d2916dda310af2e98ded3f7821079f83adaf5
Contents?: true
Size: 518 Bytes
Versions: 7
Compression:
Stored size: 518 Bytes
Contents
#ifndef __FGDB_INTEGER_PRIMITIVE_HPP__ #define __FGDB_INTEGER_PRIMITIVE_HPP__ #include "filegdb.hpp" #include "base.hpp" #include "primitive.hpp" namespace filegdb { class integer_primitive : public primitive<int, integer_primitive> { public: integer_primitive() {} integer_primitive(int *value) : primitive(value) {} virtual VALUE klass(); static VALUE _klass; static void define(VALUE module); static VALUE set_value(VALUE self, VALUE value); static VALUE get_value(VALUE self); }; } #endif
Version data entries
7 entries across 7 versions & 1 rubygems