mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 03:02:29 +00:00
14 lines
261 B
C++
14 lines
261 B
C++
#ifndef COMMON_INSTANCE_T_INSTANCE_ID_HPP
|
|
#define COMMON_INSTANCE_T_INSTANCE_ID_HPP
|
|
|
|
#include <cstdint>
|
|
#include <storm/List.hpp>
|
|
|
|
template <class T>
|
|
class TInstanceId : public TSLinkedNode<T> {
|
|
public:
|
|
// Member variables
|
|
uint32_t m_id;
|
|
};
|
|
|
|
#endif
|