mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-06-03 16:02:34 +02:00
18 lines
315 B
C++
18 lines
315 B
C++
#ifndef __JSON_SPIRIT_WRAPPER_H__
|
|
#define __JSON_SPIRIT_WRAPPER_H__
|
|
|
|
#include "univalue/univalue.h"
|
|
|
|
namespace json_spirit {
|
|
|
|
typedef UniValue Value;
|
|
typedef UniValue Array;
|
|
typedef UniValue Object;
|
|
typedef UniValue::VType Value_type;
|
|
|
|
}
|
|
|
|
#define find_value(val,key) (val[key])
|
|
|
|
#endif // __JSON_SPIRIT_WRAPPER_H__
|