mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-09 16:32:36 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
22 lines
389 B
C++
22 lines
389 B
C++
#pragma once
|
|
|
|
namespace xrpl {
|
|
namespace Resource {
|
|
|
|
/** The disposition of a consumer after applying a load charge. */
|
|
enum Disposition {
|
|
/** No action required. */
|
|
ok
|
|
|
|
/** Consumer should be warned that consumption is high. */
|
|
,
|
|
warn
|
|
|
|
/** Consumer should be disconnected for excess consumption. */
|
|
,
|
|
drop
|
|
};
|
|
|
|
} // namespace Resource
|
|
} // namespace xrpl
|