mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
18 lines
324 B
C++
18 lines
324 B
C++
#ifndef XRPL_JSON_JSON_FORWARDS_H_INCLUDED
|
|
#define XRPL_JSON_JSON_FORWARDS_H_INCLUDED
|
|
|
|
namespace Json {
|
|
|
|
// value.h
|
|
using Int = int;
|
|
using UInt = unsigned int;
|
|
class StaticString;
|
|
class Value;
|
|
class ValueIteratorBase;
|
|
class ValueIterator;
|
|
class ValueConstIterator;
|
|
|
|
} // namespace Json
|
|
|
|
#endif // JSON_FORWARDS_H_INCLUDED
|