when I compile the following files, I've got the error:
ECArgs.h:36:3: error: ‘string’ does not name a type
ECArgs.h:36: ECString value(char c);
Could somebody give me any hints for the error?
ECArgs.h
#include <list>
#include "ECString.h"
class ECArgs
{
public:
ECArgs(int argc, char *argv[]);
int nargs() { return nargs_; }
bool isset(char c);
ECString value(char c);
ECString arg(int n) { return argList[n]; }
private:
int nargs_;
int nopts_;
ECString argList[32];
list<ECString> optList;
};
ECString.h
#define ECS gnu
#if ECS == gnu
#include <cstring>
#define ECString string
using namespace std;
#else
#include <bstring.h>
#define ECString string
#endif
I ran into a similar error. It was due to the fact that I had left out using namespace std;
Alternatively, one has to use std::string
for all occurrences of string
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With