beegfs/fsck/source/database/ModificationEvent.h
2025-08-10 01:34:16 +02:00

19 lines
228 B
C++

#ifndef MODFICATIONEVENT_H_
#define MODFICATIONEVENT_H_
#include <database/EntryID.h>
namespace db {
struct ModificationEvent
{
EntryID id;
typedef EntryID KeyType;
EntryID pkey() const { return id; }
};
}
#endif