class AdLint::Cpp::SystemIncludeLine

Public Class Methods

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

Public Instance Methods

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