File: noteObject.rb

package info (click to toggle)
ruby-spreadsheet 1.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,964 kB
  • sloc: ruby: 6,943; makefile: 10
file content (17 lines) | stat: -rw-r--r-- 355 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'spreadsheet/encodings'

module Spreadsheet
  ##
  # The NoteObject class is made to handle the text output from the 
  # object, txo, continue records which contain a comment's text record.
  #
  #
  class NoteObject
    include Encodings
    attr_accessor :objID, :text
    def initialize
      @objID  = -1
      @text   = ""
    end
  end
end