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

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

refs #38, #39, #48

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