mirror of
https://github.com/nlohmann/json.git
synced 2025-07-28 12:02:00 +03:00
worked on #91
- implemented `get_ptr` function to return pointer to value member - overworked `get` function to support pointer types - added test cases - added documentation (see http://nlohmann.github.io/json/classnlohmann_1_1basic__json.html) with examples
This commit is contained in:
20
doc/examples/get_ptr.cpp
Normal file
20
doc/examples/get_ptr.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
#include <json.hpp>
|
||||
|
||||
using namespace nlohmann;
|
||||
|
||||
int main()
|
||||
{
|
||||
// create a JSON boolean
|
||||
json value = 17;
|
||||
|
||||
// explicitly getting pointers
|
||||
auto p1 = value.get_ptr<const json::number_integer_t*>();
|
||||
auto p2 = value.get_ptr<json::number_integer_t*>();
|
||||
auto p3 = value.get_ptr<json::number_integer_t* const>();
|
||||
auto p4 = value.get_ptr<const json::number_integer_t* const>();
|
||||
auto p5 = value.get_ptr<json::number_float_t*>();
|
||||
|
||||
// print the pointees
|
||||
std::cout << *p1 << ' ' << *p2 << ' ' << *p3 << ' ' << *p4 << '\n';
|
||||
std::cout << std::boolalpha << (p5 == nullptr) << '\n';
|
||||
}
|
Reference in New Issue
Block a user