class dog{
private:
members.....
public...
proto constructor.....
};
//real constructor
dog::dog(.....){
//initializing private variables};
......
int main(){
//creating objet
dog lazzy;
when i compile it give me an error, about theres no such function to call
in dog lazzy; but i only want to create an object, instead the compiler think i calling a function, i really dont know how to solve this,
please any help with this
sorry for my english
Advertising