1
0
mirror of synced 2024-11-17 04:17:12 +01:00
ImHex/plugins/libimhex/source/data_processor/link.cpp

10 lines
214 B
C++
Raw Normal View History

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