Class: NxBuild::Sln
- Inherits:
-
Object
- Object
- NxBuild::Sln
- Defined in:
- lib/nxbuild/sln/sln.rb
Instance Attribute Summary collapse
-
#children ⇒ Object
Returns the value of attribute children.
Instance Method Summary collapse
- #dump(buffer) ⇒ Object
-
#initialize ⇒ Sln
constructor
A new instance of Sln.
Constructor Details
#initialize ⇒ Sln
Returns a new instance of Sln.
5 6 7 |
# File 'lib/nxbuild/sln/sln.rb', line 5 def initialize @children = [] end |
Instance Attribute Details
#children ⇒ Object
Returns the value of attribute children.
3 4 5 |
# File 'lib/nxbuild/sln/sln.rb', line 3 def children @children end |
Instance Method Details
#dump(buffer) ⇒ Object
9 10 11 |
# File 'lib/nxbuild/sln/sln.rb', line 9 def dump(buffer) @children.each {|c| c.dump(buffer) } end |