Class: Uttk::Loaders::Loader

Inherits:
Object
  • Object
show all
Includes:
Abstract
Defined in:
lib/uttk/loaders/Loader.rb

Overview

FIXME: document me

Direct Known Subclasses

Yaml

Instance Method Summary collapse

Instance Method Details

#load(aString, symtbl = nil) ⇒ Object

Override this method in subclasses. It must returns an object which respond to testify. The argument aString contains the contents of the loaded file. The symtbl argument is the current table of symbols.

Raises:

  • (NotImplementedError)


52
53
54
# File 'lib/uttk/loaders/Loader.rb', line 52

def load ( aString, symtbl=nil )
  raise NotImplementedError
end