• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

a little c++ help please..

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.
 
void main()

Should be int main() for starters..

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