Board index » cppbuilder » typequalifier?

typequalifier?


2005-07-20 02:14:01 PM
cppbuilder30
Hi,
I get an Error "InitHw mustn't own a typequalifier"
[declaration in header]
class TProfiSofting
{
public:
__fastcall TProfiSofting(void);
__fastcall ~TProfiSofting(void);
void __fastcall GetLiveList(TStringGrid* Grid);
int __fastcall InitHw(void);
int __fastcall InitSlv(void);
.......
........
[/declaration in header]
in below line the error occurs, why the hell...?
[implementation in *.cpp]
int __fastcall TProfiSofting::InitHw(void)
{
[/implementation in *.cpp]
Thank you!
 
 

Re:typequalifier?

"roN" < XXXX@XXXXX.COM >wrote in message
Quote
I get an Error "InitHw mustn't own a typequalifier"
I am assuming that you actually meant "InitHw cannot have a type qualifier"
instead.
Quote
in below line the error occurs, why the hell...?
Double-check that you are closing all of your brackets properly.
Gambit
 

Re:typequalifier?

Remy Lebeau (TeamB) wrote:
Quote
"roN" < XXXX@XXXXX.COM >wrote in message
news:42ddeba8$ XXXX@XXXXX.COM ...

>I get an Error "InitHw mustn't own a typequalifier"

I am assuming that you actually meant "InitHw cannot have a type
qualifier" instead.

>in below line the error occurs, why the hell...?

Double-check that you are closing all of your brackets properly.
yup right..... :) already got it....hmmm
 

{smallsort}