summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_cpplibrary/src/lib/encode/XNotificationFields.cpp
blob: dff29db00b39649e59e407fb1c63283e2a92b1de (plain)
1
2
3
4
5
6
7
#include "XNotificationFields.h"
#include "XNotificationFieldsImp.h"

std::shared_ptr<XNotificationFields> vagt::encode::XNotificationFields::create(std::shared_ptr<XCommonEventHeader> header, const XString & changeIdentifier, const XString & changeType)
{
    return std::make_shared<XNotificationFieldsImp>(header, changeIdentifier, changeType);
}