CCF/include/ccf/seq_no_collection.h

12 строки
256 B
C++
Исходник Обычный вид История

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the Apache 2.0 License.
#pragma once
2022-02-14 20:52:04 +03:00
#include "ccf/ds/contiguous_set.h"
#include "ccf/tx_id.h"
2022-02-14 20:52:04 +03:00
namespace ccf
{
using SeqNoCollection = ccf::ds::ContiguousSet<ccf::SeqNo>;
}