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

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

refs #63, #64

File size: 1.1 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 autoload :Change_Control, "rm/common/change_control.rb"
21 end
22
23 module Support
24 autoload :Definition, "rm/support/definition.rb"
25 autoload :Identification, "rm/support/identification.rb"
26 autoload :Terminology, "rm/support/terminology.rb"
27 end
28
29 module Data_Types
30 autoload :Basic, "rm/data_types/basic.rb"
31 autoload :Text, "rm/data_types/text.rb"
32 autoload :URI, "rm/data_types/uri.rb"
33 autoload :Quantity, "rm/data_types/quantity.rb"
34 end
35 end
36end
Note: See TracBrowser for help on using the repository browser.