source: ruby/trunk/lib/models/rm.rb@ 110

Last change on this file since 110 was 110, checked in by KOBAYASHI, Shinji, 16 years ago

refs #63, #64

File size: 1.0 KB
Line 
1$:.unshift File.join(File.dirname(__FILE__))
2# component: openEHR Ruby reference implementation
3# description: This file contains rm.packages.domain classes
4# keywords: archetype
5# author: Shinji KOBAYASHI, Akimichi TATSUKAWA
6# support: openEHR.jp
7# license: openEHR open source license
8#
9
10# OpenEHR::RM
11module OpenEHR
12 module RM
13 autoload :Demographic, "rm/demographic.rb"
14
15 module Common
16 autoload :Resource, "rm/common/resource.rb"
17 autoload :Archetyped, "rm/common/archetyped.rb"
18 autoload :Generic, "rm/common/generic.rb"
19 autoload :Directory, "rm/common/directory.rb"
20 end
21
22 module Support
23 autoload :Definition, "rm/support/definition.rb"
24 autoload :Identification, "rm/support/identification.rb"
25 autoload :Terminology, "rm/support/terminology.rb"
26 end
27
28 module Data_Types
29 autoload :Basic, "rm/data_types/basic.rb"
30 autoload :Text, "rm/data_types/text.rb"
31 autoload :URI, "rm/data_types/uri.rb"
32 autoload :Quantity, "rm/data_types/quantity.rb"
33 end
34 end
35end
Note: See TracBrowser for help on using the repository browser.