J
josh.bauer2020
Guest
Dear Sir or Madam,
class dd {
private:
int dword = 7;
public:
dd& dd:
perator=(const int arg)
{
return *this;
}
};
dd mydword=9;//ERROR HERE
I would like to initialize my wrapper over int numbers but
overloading in c++ gives error.
HOW TO DO THIS?
Continue reading...
class dd {
private:
int dword = 7;
public:
dd& dd:
![Eek! :o :o](https://cdn.jsdelivr.net/joypixels/assets/8.0/png/unicode/64/1f631.png)
{
return *this;
}
};
dd mydword=9;//ERROR HERE
I would like to initialize my wrapper over int numbers but
overloading in c++ gives error.
HOW TO DO THIS?
Continue reading...