Click here to Skip to main content
15,881,248 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Is this declaring QTcpServer= parent?
MandelbrotCalculator::MandelbrotCalculator(QObject* parent) :
}
QTcpServer(parent),
mScaleFactor()

What I have tried:

Is this declaring QTcpServer= parent?
MandelbrotCalculator::MandelbrotCalculator(QObject* parent) :
}
QTcpServer(parent),
mScaleFactor()
Posted
Updated 22-Dec-20 0:49am
Comments
KarstenK 22-Dec-20 3:58am    
rethink the code completly it looks like severly mistyped and so not usable.

No, what you have posted is not valid at all. The colon implies further initialization of an object's constructor but the expression is incomplete so it is impossible to tell. That is, at that time of this writing.
 
Share this answer
 
As I have suggested already in a number of your previous questions, you are not going to make any progress until you sit down with a decent C++ tutorial or book and actually learn the language. Posting random lines of random code here is just a waste of your own time.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900