File: loose-struct.rb

package info (click to toggle)
rdtool 0.6.38-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 940 kB
  • sloc: ruby: 8,213; lisp: 387; sh: 33; makefile: 16
file content (11 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
require 'rd/document-struct'
require 'rd/element'
require 'rd/tree'

module RD
  class DocumentStructure
    LOOSE = DocumentStructure.new
    LOOSE.define_relationship(NonterminalElement, Element)
    LOOSE.define_relationship(Tree, DocumentElement)
  end
end