TBuf & TPtrC ???

Login to reply to this topic.
Fri, 2006-04-28 14:29
Joined: 2006-04-28
Forum posts: 3
How can I assign the content of TPtrC to TBuf, not for initialization??

I tried:

TBuf<50> buf1;
....
TLex lex(aLine);
lex.Mark();
while(!lex.Eos())
{
.....
buf1.Copy(lex.MarkedToken()); //I can not get the content pointed by lex.MarkToken()
}
.....


Expert, can you help???

Thanks!!!

Fri, 2006-04-28 14:58
Joined: 2006-04-28
Forum posts: 3
Re: TBuf & TPtrC ???
Helloooooooooo,

Is there someone interested it?
Fri, 2006-04-28 15:31
Joined: 2006-04-28
Forum posts: 3
Re: TBuf & TPtrC ???
Solved, because of other mis-understanding, lol
  • Login to reply to this topic.