File: charsets.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 (15 lines) | stat: -rw-r--r-- 451 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module TTFunk
  class Table
    class Cff < TTFunk::Table
      # Predefined CFF data
      module Charsets
        autoload :EXPERT, 'ttfunk/table/cff/charsets/expert'
        autoload :EXPERT_SUBSET, 'ttfunk/table/cff/charsets/expert_subset'
        autoload :ISO_ADOBE, 'ttfunk/table/cff/charsets/iso_adobe'
        autoload :STANDARD_STRINGS, 'ttfunk/table/cff/charsets/standard_strings'
      end
    end
  end
end