58    Je=
"cualquer";  Je.
Print();
 
   59    Je=std::string(
"cualquer");  Je.
Print();
 
   60    Je=std::vector<int>({-1,5,1,-11});         Je.
Print();
 
   61    Je=std::vector<long int>({-3,5,8,-11});    Je.
Print();
 
   62    Je=std::vector<double>({-1.5,1.8,-1.2});   Je.
Print();
 
   63    Je=std::vector<bool>({
true,
false,
true});   Je.
Print();
 
   64    Je=std::vector<std::string>({
"aa",
"bb"});  Je.
Print();
 
   65    Je=std::vector<Pds::Json>({J,J});          Je.
Print();
 
La clase tipo Pds::JsonElement . Esta clase genera un elemento de una estructura Json....
 
La clase tipo Pds::Json . Esta clase genera una estructura capaz de almacenar datos del formato Json....
 
void Print(bool last=true, unsigned int Ntabs=0) const
Retorna un std::string con texto en formato JsonElement.
 
bool Add(const std::string &Label, const Pds::JsonElement &E)
Agrega un elementos Json a la estructura Json.