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

Last change on this file since 135 was 135, checked in by KOBAYASHI, Shinji, 15 years ago

fixed #41

File size: 1.3 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
13 autoload :Assumed_Library_Types, "assumed_library_types.rb"
14
15 module RM
16 autoload :Demographic, "rm/demographic.rb"
17 autoload :Security, "rm/security.rb"
18
19 module Common
20 autoload :Resource, "rm/common/resource.rb"
21 autoload :Archetyped, "rm/common/archetyped.rb"
22 autoload :Generic, "rm/common/generic.rb"
23 autoload :Directory, "rm/common/directory.rb"
24 autoload :Change_Control, "rm/common/change_control.rb"
25 end
26
27 module Support
28 autoload :Definition, "rm/support/definition.rb"
29 autoload :Identification, "rm/support/identification.rb"
30 autoload :Terminology, "rm/support/terminology.rb"
31 end
32
33 module Data_Types
34 autoload :Basic, "rm/data_types/basic.rb"
35 autoload :Text, "rm/data_types/text.rb"
36 autoload :URI, "rm/data_types/uri.rb"
37 autoload :Quantity, "rm/data_types/quantity.rb"
38 autoload :Encapsulated, "rm/data_types/encapsulated.rb"
39 end
40
41 module Data_Structures
42 autoload :Data_Structure, "rm/data_structure.rb"
43 end
44 end
45
46end
Note: See TracBrowser for help on using the repository browser.