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

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

refs #39, #65

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