source: ruby/trunk/lib/models/rm/data_structure.rb@ 164

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

simple terminology commit

File size: 543 bytes
Line 
1# rm::data_structures
2# class DATA_STRUCTURE
3# http://www.openehr.org/uml/release-1.0.1/Browsable/_9_5_1_76d0249_1140447518205_872539_864Report.html
4# refs #59
5
6module OpenEHR
7 module RM
8 module Data_Structures
9 class Data_Structure < OpenEHR::RM::Common::Archetyped::Locatable
10 def initialize(args = { })
11 super(args)
12 end
13
14 def as_hierarchy
15 raise NotImplementedError, "as_hirarchy must be implemented"
16 end
17 end
18 end # of Data_Structures
19 end # of RM
20end # of OpenEHR
Note: See TracBrowser for help on using the repository browser.