class GirFFI::VariableNameGenerator
Generates a sequence of unique variable names used in generating function definitions.
Public Class Methods
Public Instance Methods
Source
# File lib/gir_ffi/variable_name_generator.rb, line 11 def new_var @varno += 1 "_v#{@varno}" end