File: simple.rb

package info (click to toggle)
ruby-ttfunk 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,472 kB
  • sloc: ruby: 7,954; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 397 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require_relative '../table'

module TTFunk
  class Table
    # A table that TTFunk doesn't decode but preserve.
    class Simple < Table
      # Table tag
      # @return [String]
      attr_reader :tag

      # @param file [TTFunk::File]
      # @param tag [String]
      def initialize(file, tag)
        @tag = tag
        super(file)
      end
    end
  end
end