Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: surrender on September 16, 2010, 11:17:25 am

Title: MinGW compiler error with string class in C++
Post by: surrender on September 16, 2010, 11:17:25 am
 :?
Hell all,

I made a class declaration in a .h file with a private data member 'string name'.
After compilation of the corresponding .cpp file I keep getting the following errors:

line 17: "string does not name a type"
line 19: "expected ')' before 's' "

code snippet follows below: (in .h file)

#include <string>

        class Animal
       {
       protected:
17:      string name;
       public:
19:      Animal(string s){name = s;};
           ~Animal(){};    
           // Member functions
           void Eat();  
           void Drink();
           void Sleep();
           void Walk();

       };

What could be the possible cause of these errors?
I have changed the compilker settings in Code::Blocks, but it still leaves me
with the same errors.
Any help I will appreciate!

Thanks,

surrender
Title: Re: MinGW compiler error with string class in C++
Post by: nenin on September 16, 2010, 11:20:42 am
You forget about namespace std.
Title: Re: MinGW compiler error with string class in C++
Post by: Jenna on September 16, 2010, 11:29:08 am
Not related to C::B.
General programming questions are not allowed and should not be answered in our forum/website.

Please ask such a question in a C/C++-forum next time.

Topic locked !