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

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

refs #51

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