src/Pure/Thy/thy_load.scala
author hoelzl
Tue, 19 Jul 2011 14:38:48 +0200
changeset 43924 1165fe965da8
parent 43673 29eb1cd29961
child 44159 9a35e88d9dc9
permissions -rw-r--r--
rename Fin to enat

/*  Title:      Pure/Thy/thy_load.scala
    Author:     Makarius

Loading files that contribute to a theory.
*/

package isabelle

abstract class Thy_Load
{
  def is_loaded(name: String): Boolean

  def check_thy(dir: Path, name: String): (String, Thy_Header.Header)
}