Class: Beamer::Loader::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/beamer/loader/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object, view_context) ⇒ Base

Returns a new instance of Base.



8
9
10
11
# File 'lib/beamer/loader/base.rb', line 8

def initialize(object, view_context)
  @object = object
  @view_context = view_context
end

Instance Attribute Details

#objectObject (readonly)

Returns the value of attribute object.



5
6
7
# File 'lib/beamer/loader/base.rb', line 5

def object
  @object
end

#view_contextObject (readonly)

Returns the value of attribute view_context.



6
7
8
# File 'lib/beamer/loader/base.rb', line 6

def view_context
  @view_context
end

Instance Method Details

#load_presenterObject



13
14
15
# File 'lib/beamer/loader/base.rb', line 13

def load_presenter
  raise "implement!"
end