source: ruby/trunk/models/rm.rb@ 4

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

restructuring repository tree

File size: 816 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 module Common
15 autoload :Resource, "rm/common/resource.rb"
16 end
17 module Support
18 autoload :Definition, "rm/support/definition.rb"
19 module Terminology
20 autoload :Terminology, "rm/support/terminology.rb"
21 end
22 end
23 module Data_Types
24 autoload :Basic, "rm/data_types/basic.rb"
25 autoload :Text, "rm/data_types/text.rb"
26 autoload :URI, "rm/data_types/uri.rb"
27 autoload :Quantity, "rm/data_types/quantity.rb"
28 end
29 end
30end
Note: See TracBrowser for help on using the repository browser.