DataStructureDescription.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef __DATASTRUCTURE_DATASTRUCTUREDESCRIPTION_H_
00031 #define __DATASTRUCTURE_DATASTRUCTUREDESCRIPTION_H_
00032
00033
00034 #include <XmlElement.hpp>
00035
00036 #include "DataItemDescription.hpp"
00037
00038 #include <vector>
00039
00040 namespace mermaid
00041 {
00042 namespace support
00043 {
00044 namespace data
00045 {
00046 using boost::shared_ptr;
00047
00048 using mermaid::support::xml::XmlElement;
00049
00050
00051
00052
00053
00054
00055
00056 class DataStructureDescription
00057 {
00058
00059 public:
00060 DataStructureDescription (shared_ptr<XmlElement> structureDescriptionElement);
00061
00062 std::string getName();
00063
00064 std::vector<shared_ptr<DataItemDescription> > getItemDescriptionVector();
00065
00066 private:
00067 std::string name_;
00068 XmlElement composition_;
00069
00070 std::vector<shared_ptr<DataItemDescription> > itemDescriptionVector_;
00071
00072 };
00073 }
00074 }
00075 }
00076
00077 #endif //__DATASTRUCTURE_DATASTRUCTUREDESCRIPTION_H_
00078
00079