1
0
mirror of synced 2024-11-17 04:17:12 +01:00
ImHex/plugins/libimhex/source/data_processor/link.cpp
2021-08-29 14:18:45 +02:00

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) { }
}