class AdLint::Cpp::IncludeLine

Attributes

fpath[RW]
header_name[R]
include_depth[R]

Public Class Methods

new(keyword, header_name, include_depth) click to toggle source
Calls superclass method AdLint::Cpp::ControlLine::new
# File lib/adlint/cpp/syntax.rb, line 317
def initialize(keyword, header_name, include_depth)
  super(keyword)
  @header_name   = header_name
  @include_depth = include_depth
end