Sha256: dcb35390babdbf27c2e47aeecd9ad0c1d24954c36178e7f8e7cac4f078856327

Contents?: true

Size: 331 Bytes

Versions: 2

Compression:

Stored size: 331 Bytes

Contents

# Operator Data
module OoxmlParser
  class Operator
    attr_accessor :operator, :bottom_value, :top_value, :value

    def initialize(operator = nil, bottom_value = nil, top_value = nil, value = nil)
      @operator = operator
      @bottom_value = bottom_value
      @top_value = top_value
      @value = value
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ooxml_parser-0.1.2 lib/ooxml_parser/docx_parser/docx_data/document_structure/docx_paragraph/docx_formula/operator.rb
ooxml_parser-0.1.1 lib/ooxml_parser/docx_parser/docx_data/document_structure/docx_paragraph/docx_formula/operator.rb