a little c++ help please..

GoldenBear

Banned
Mar 2, 2000
6,843
2
0
Instead of blahClass blah(5);

It should be

b.blahfunction(5);

And preceded by:

blahClass b;

That defines 'b' as a Blahclass thing, and you use 'b' to call on the bool function.
 

GoldenBear

Banned
Mar 2, 2000
6,843
2
0
void main()

Should be int main() for starters..

So now, can you only manipulate the CLASS file? Is that where you're having trouble?