Commit 999583e6 authored by Thomas Braun's avatar Thomas Braun
Browse files

src/client/FwdAttrConfEventData.h: Factor it out

parent 0634192a
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -127,14 +127,4 @@ void AttrConfEventData::set_time()
    reception_date = make_TimeVal(std::chrono::system_clock::now());
}

FwdAttrConfEventData::FwdAttrConfEventData(DeviceProxy *dev,
                                           const std::string &nam,
                                           const std::string &evt,
                                           Tango::AttributeInfoEx *attr_conf_in,
                                           Tango::EventReason event_reason,
                                           const DevErrorList &errors_in) :
    AttrConfEventData(dev, nam, evt, attr_conf_in, event_reason, errors_in)
{
}

} // namespace Tango
+1 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@ set(SOURCES DbClass.cpp
            DeviceProxy_asyn.cpp
            proxy_asyn_cb.cpp
            AttributeProxy.cpp
            FwdAttrConfEventData.cpp
            Group.cpp
            GroupAttrReply.cpp
            GroupAttrReplyList.cpp
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@
#include <tango/client/DeviceProxy.h>
#include <tango/client/DevIntrChangeEventData.h>
#include <tango/client/EventConsumerKeepAliveThread.h>
#include <tango/client/FwdAttrConfEventData.h>
#include <tango/common/PointerWithLock.h>
#include <tango/common/tango_const.h>
#include <tango/server/AutoTangoMonitor.h>
+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
#include <tango/client/DelayEvent.h>
#include <tango/client/DevIntrChangeEventData.h>
#include <tango/client/EventData.h>
#include <tango/client/FwdAttrConfEventData.h>
#include <tango/client/NotifdEventConsumer.h>
#include <tango/client/PipeEventData.h>
#include <tango/client/ZmqEventConsumer.h>
+21 −0
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2025 Copyright contributors to the cppTango project
 *
 * SPDX-License-Identifier: LGPL-3.0-or-later
 */
#include <tango/client/FwdAttrConfEventData.h>

namespace Tango
{

FwdAttrConfEventData::FwdAttrConfEventData(DeviceProxy *dev,
                                           const std::string &nam,
                                           const std::string &evt,
                                           Tango::AttributeInfoEx *attr_conf_in,
                                           Tango::EventReason event_reason,
                                           const DevErrorList &errors_in) :
    AttrConfEventData(dev, nam, evt, attr_conf_in, event_reason, errors_in)
{
}

} // namespace Tango
Loading