CCF
Loading...
Searching...
No Matches
version.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the Apache 2.0 License.
3#pragma once
4
5#include <cstdint>
6
7namespace ccf::kv
8{
9 // Version indexes modifications to the local kv store.
10 using Version = uint64_t;
11 static constexpr Version NoVersion = 0u;
12}
Definition app_interface.h:18
uint64_t Version
Definition version.h:10