summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_cpplibrary/src/lib/encode/XMobileFlowFields.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'veslibrary/ves_cpplibrary/src/lib/encode/XMobileFlowFields.cpp')
-rwxr-xr-xveslibrary/ves_cpplibrary/src/lib/encode/XMobileFlowFields.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/veslibrary/ves_cpplibrary/src/lib/encode/XMobileFlowFields.cpp b/veslibrary/ves_cpplibrary/src/lib/encode/XMobileFlowFields.cpp
new file mode 100755
index 0000000..90d31da
--- /dev/null
+++ b/veslibrary/ves_cpplibrary/src/lib/encode/XMobileFlowFields.cpp
@@ -0,0 +1,15 @@
+#include "XMobileFlowFields.h"
+#include "XMobileFlowFieldsImp.h"
+
+std::shared_ptr<XMobileFlowFields> vagt::encode::XMobileFlowFields::create(std::shared_ptr<XCommonEventHeader> header, const XString & flowDirection, const XGtpPerFlowMetrics & gtpPerFlowMetrics, const XString & ipProtocolType, const XString & ipVersion, const XString & otherEndpointIpAddress, XInteger otherEndpointPort, const XString & reportingEndpointIpAddr, XInteger reportingEndpointPort)
+{
+ return std::make_shared<XMobileFlowFieldsImp>(header,
+ flowDirection,
+ gtpPerFlowMetrics,
+ ipProtocolType,
+ ipVersion,
+ otherEndpointIpAddress,
+ otherEndpointPort,
+ reportingEndpointIpAddr,
+ reportingEndpointPort);
+}