@private
# File lib/util/wrapper.rb, line 120 def self.included(base) base.extend(SWIGClassHelper) end
# File lib/util/wrapper.rb, line 139 def self.registry @registry ||= {} end
# File lib/util/wrapper.rb, line 126 def inspect return "#{self.class}<nil>" unless @impl pstr = Cproton.pn_string("") begin Cproton.pn_inspect(@impl, pstr) return Cproton.pn_string_get(pstr) ensure Cproton.pn_free(pstr) end end
# File lib/util/wrapper.rb, line 137 def to_s() inspect; end