source: ruby/branches/0.5.0/lib/open_ehr/rm.rb@ 167

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

adjust for rails

File size: 1.6 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
[167]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"
[135]17 autoload :Security, "rm/security.rb"
[26]18
[4]19 module Common
20 autoload :Resource, "rm/common/resource.rb"
[104]21 autoload :Archetyped, "rm/common/archetyped.rb"
22 autoload :Generic, "rm/common/generic.rb"
[110]23 autoload :Directory, "rm/common/directory.rb"
[113]24 autoload :Change_Control, "rm/common/change_control.rb"
[4]25 end
[26]26
[4]27 module Support
28 autoload :Definition, "rm/support/definition.rb"
[90]29 autoload :Identification, "rm/support/identification.rb"
30 autoload :Terminology, "rm/support/terminology.rb"
[4]31 end
[26]32
[167]33 module DataTypes
[4]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"
[131]38 autoload :Encapsulated, "rm/data_types/encapsulated.rb"
[152]39 autoload :Time_Specification, 'rm/data_types/time_specification.rb'
[4]40 end
[128]41
[167]42 module DataStructures
[128]43 autoload :Data_Structure, "rm/data_structure.rb"
[165]44 autoload :History, 'rm/data_structures/history.rb'
45 autoload :Item_Structure, 'rm/data_structures/item_structure.rb'
[128]46 end
[140]47
48 module Security
49 autoload :Security, 'rm/security.rb'
50 end
[4]51 end
[123]52
[4]53end
Note: See TracBrowser for help on using the repository browser.