c++ - than - include string, string no nombra un tipo
org bson bsonserializationexception payload document size of is larger than maximum of 16777216 (1)
Se llama std::string
menos que pones una directiva de using
(que no debes hacer en un encabezado).
He incluido cadena y justo después de llamar una variable de cadena en una estructura en un archivo de cabecera. Obtengo la ''cadena no nombra un tipo'' para la cadena Origen y Destino Ciudad, a pesar de llamar a la cadena justo antes de
//sortedListClass.h (a few lines of comments)
#include <string>
struct flightRec{
int flightnumber;
string Origin; //problem #1
string DestinationCity; // problem #2
float cost;
flightRec* ptr;
};
typedef flightRec* nodeptr;
#ifndef SORTEDLISTCLASS_H
#define SORTEDLISTCLASS_H
#include <iostream>
#include <cassert>
sortedListClass.h: 10: 5: error: ''cadena'' no nombra un tipo
sortedListClass.h: 11: 5: error: ''cadena'' no nombra un tipo
¿Puedo preguntar qué estoy haciendo mal?