1
0
mirror of synced 2024-11-14 11:07:43 +01:00
ImHex/lib/libimhex/source/data_processor/link.cpp

10 lines
214 B
C++

#include <hex/data_processor/link.hpp>
#include <hex/helpers/shared_data.hpp>
namespace hex::dp {
Link::Link(u32 from, u32 to) : m_id(SharedData::dataProcessorLinkIdCounter++), m_from(from), m_to(to) { }
}