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`.
15 lines
214 B
C++
15 lines
214 B
C++
#pragma once
|
|
|
|
namespace Json {
|
|
|
|
// value.h
|
|
using Int = int;
|
|
using UInt = unsigned int;
|
|
class StaticString;
|
|
class Value;
|
|
class ValueIteratorBase;
|
|
class ValueIterator;
|
|
class ValueConstIterator;
|
|
|
|
} // namespace Json
|