Class: VStudioIDE::SLNDocument

Inherits:
Object
  • Object
show all
Defined in:
lib/vstudioide/sln_document.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(io) ⇒ SLNDocument

Returns a new instance of SLNDocument.



12
13
14
15
16
# File 'lib/vstudioide/sln_document.rb', line 12

def initialize(io)
  @global = nil
  @projects = []
  parse io
end

Instance Attribute Details

#globalObject (readonly)

Returns the value of attribute global.



9
10
11
# File 'lib/vstudioide/sln_document.rb', line 9

def global
  @global
end

#projectsObject (readonly)

Returns the value of attribute projects.



10
11
12
# File 'lib/vstudioide/sln_document.rb', line 10

def projects
  @projects
end