Method: Docxer::Word::Footers::Footer#initialize

Defined in:
lib/docxer/word/footers/footer.rb

#initialize(options = {}) ⇒ Footer

Returns a new instance of Footer.



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/docxer/word/footers/footer.rb', line 9

def initialize(options={})
  @options = options
  @content = []
  @relationships = []

  if block_given?
    yield self
  else

  end
end