Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
picojson::null_parse_context Class Reference

Classes

struct  dummy_str
 

Public Member Functions

 null_parse_context ()
 
bool set_null ()
 
bool set_bool (bool)
 
bool set_number (double)
 
template<typename Iter >
bool parse_string (input< Iter > &in)
 
bool parse_array_start ()
 
template<typename Iter >
bool parse_array_item (input< Iter > &in, size_t)
 
bool parse_array_stop (size_t)
 
bool parse_object_start ()
 
template<typename Iter >
bool parse_object_item (input< Iter > &in, const std::string &)
 

Detailed Description

Definition at line 977 of file spec_test_generator.cpp.

Constructor & Destructor Documentation

◆ null_parse_context()

picojson::null_parse_context::null_parse_context ( )
inline

Definition at line 984 of file spec_test_generator.cpp.

984{}

Member Function Documentation

◆ parse_array_item()

template<typename Iter >
bool picojson::null_parse_context::parse_array_item ( input< Iter > & in,
size_t  )
inline

Definition at line 998 of file spec_test_generator.cpp.

998 {
999 return _parse(*this, in);
1000 }
bool _parse(Context &ctx, input< Iter > &in)
Here is the call graph for this function:

◆ parse_array_start()

bool picojson::null_parse_context::parse_array_start ( )
inline

Definition at line 996 of file spec_test_generator.cpp.

996{ return true; }

◆ parse_array_stop()

bool picojson::null_parse_context::parse_array_stop ( size_t )
inline

Definition at line 1001 of file spec_test_generator.cpp.

1001{ return true; }

◆ parse_object_item()

template<typename Iter >
bool picojson::null_parse_context::parse_object_item ( input< Iter > & in,
const std::string &  )
inline

Definition at line 1004 of file spec_test_generator.cpp.

1004 {
1005 return _parse(*this, in);
1006 }
Here is the call graph for this function:

◆ parse_object_start()

bool picojson::null_parse_context::parse_object_start ( )
inline

Definition at line 1002 of file spec_test_generator.cpp.

1002{ return true; }

◆ parse_string()

template<typename Iter >
bool picojson::null_parse_context::parse_string ( input< Iter > & in)
inline

Definition at line 992 of file spec_test_generator.cpp.

992 {
993 dummy_str s;
994 return _parse_string(s, in);
995 }
bool _parse_string(String &out, input< Iter > &in)
char * s
Here is the call graph for this function:

◆ set_bool()

bool picojson::null_parse_context::set_bool ( bool )
inline

Definition at line 986 of file spec_test_generator.cpp.

986{ return true; }

◆ set_null()

bool picojson::null_parse_context::set_null ( )
inline

Definition at line 985 of file spec_test_generator.cpp.

985{ return true; }

◆ set_number()

bool picojson::null_parse_context::set_number ( double )
inline

Definition at line 990 of file spec_test_generator.cpp.

990{ return true; }

The documentation for this class was generated from the following file: