mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
34 lines
616 B
C++
34 lines
616 B
C++
#pragma once
|
|
|
|
#include <xrpl/resource/Consumer.h>
|
|
#include <xrpl/resource/detail/Entry.h>
|
|
|
|
namespace xrpl {
|
|
namespace Resource {
|
|
|
|
/** A set of imported consumer data from a gossip origin. */
|
|
struct Import
|
|
{
|
|
struct Item
|
|
{
|
|
explicit Item() = default;
|
|
|
|
int balance;
|
|
Consumer consumer;
|
|
};
|
|
|
|
// Dummy argument required for zero-copy construction
|
|
Import(int = 0) : whenExpires()
|
|
{
|
|
}
|
|
|
|
// When the imported data expires
|
|
clock_type::time_point whenExpires;
|
|
|
|
// List of remote entries
|
|
std::vector<Item> items;
|
|
};
|
|
|
|
} // namespace Resource
|
|
} // namespace xrpl
|