class AdLint::Cpp::UserIncludeLine

Public Class Methods

new(keyword, usr_header_name, include_depth) click to toggle source
Calls superclass method AdLint::Cpp::IncludeLine::new
# File lib/adlint/cpp/syntax.rb, line 329
def initialize(keyword, usr_header_name, include_depth)
  super(keyword, usr_header_name, include_depth)
end

Public Instance Methods

inspect(indent = 0) click to toggle source
# File lib/adlint/cpp/syntax.rb, line 333
def inspect(indent = 0)
  " " * indent + "#{short_class_name} (#{header_name.inspect})"
end