source: ruby/branches/0.5/lib/open_ehr/rm/data_structures.rb@ 175

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

the implemented reference models are now on rails

File size: 533 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 DataStructures
9 class DataStructure < 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.