Welcome to Dream.In.Code
Getting C++ Help is Easy!

Join 132,333 C++ Programmers for FREE! Get instant access to thousands of C++ experts, tutorials, code snippets, and more! There are 1,117 people online right now. Registration is fast and FREE... Join Now!




C++ template class

 
Reply to this topicStart new topic

C++ template class

abosa53
post 14 Mar, 2008 - 11:58 AM
Post #1


New D.I.C Head

*
Joined: 14 Mar, 2008
Posts: 4

I'm having problems trying to compile following cpp header file. Any Ideas what I have done wrong?
I’m using Eclipse CDT with cygwin library. I have tried Visual ++ 2008 and got same problem.
Tanks for any help.

#ifndef _STRTOK_HH_
#define _STRTOK_HH_


template<class C>
class StringTokenizerT {
typedef basic_string<C> S;

private:
S s;
S sep;
S::size_type pos; /* compile error in this line!!*/

public:

StringTokenizerT():
pos(42) {}
};
#endif


Visual ++ 2008 error C2146: syntax error : missing ';' before identifier 'pos'
Same error in the CDT.
User is offlineProfile CardPM

Go to the top of the page

skaoth
post 14 Mar, 2008 - 06:15 PM
Post #2


D.I.C Regular

Group Icon
Joined: 7 Nov, 2007
Posts: 337



Thanked 9 times

Dream Kudos: 100
My Contributions


What you need to do is preface the type from the basic_string with the keyword "typename"

e.g: typename S::size_type pos;
http://publib.boulder.ibm.com/infocenter/c...rd_typename.htm

cheers
User is offlineProfile CardPM

Go to the top of the page

abosa53
post 15 Mar, 2008 - 08:44 AM
Post #3


New D.I.C Head

*
Joined: 14 Mar, 2008
Posts: 4

QUOTE(skaoth @ 14 Mar, 2008 - 07:15 PM) *

What you need to do is preface the type from the basic_string with the keyword "typename"

e.g: typename S::size_type pos;
http://publib.boulder.ibm.com/infocenter/c...rd_typename.htm

cheers


Tank you sir, it was a grate tips.
Br
abosa53
User is offlineProfile CardPM

Go to the top of the page

Reply to this topicStart new topic
Time is now: 11/22/08 03:19AM

Live C++ Help!

C++ Tutorials

Reference Sheets

C++ Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month