class Doxyparser::Member

Public Instance Methods

col() click to toggle source
# File lib/entruby.rb, line 19
def col
  aux = self.xpath("location")[0]
  bodyEnd, bodyStart = aux["bodyend"], aux["bodystart"]
  @col = bodyEnd && bodyStart ? Integer(bodyEnd) - Integer(bodyStart) : nil
end