ServiceInterfaceDescription.cpp
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
00031 #include "config.h"
00032
00033 #include "ServiceInterfaceDescription.hpp"
00034
00035 using namespace mermaid::support::service;
00036
00037 ServiceInterfaceDescription::ServiceInterfaceDescription (std::string interfaceName, std::string interfaceComment, std::string inputDataName, std::string outputDataName)
00038 {
00039 interfaceName_ = interfaceName;
00040 interfaceComment_ = interfaceComment;
00041 inputDataName_ = inputDataName;
00042 outputDataName_ = outputDataName;
00043 };
00044
00045 std::string ServiceInterfaceDescription::getServiceInterfaceName()
00046 {
00047 return interfaceName_;
00048 };
00049
00050 std::string ServiceInterfaceDescription::getServiceInterfaceComment()
00051 {
00052 return interfaceComment_;
00053 };
00054
00055 std::string ServiceInterfaceDescription::getServiceInterfaceInputDataName()
00056 {
00057 return inputDataName_;
00058 };
00059
00060 std::string ServiceInterfaceDescription::getServiceInterfaceOutputDataName()
00061 {
00062 return outputDataName_;
00063 };