|
|
От: | Аноним | |
| Дата: | 27.07.07 08:02 | ||
| Оценка: | |||
R>// класс CDVLogin
R>CDVLogin & CDVLogin::operator=(const CDVLogin &r)
R>{
R> if (this != &r)
R> {
this->>CDVLogin::~CDVLogin();
this->>CDVLogin::CDVLogin(r);
R> }
R> return *this;
R>}
R>// класс CDVProxy
R>CDVProxy & CDVProxy::operator=(const CDVProxy &r)
R>{
R> if (this != &r)
R> {
this->>CDVProxy::~CDVProxy();
this->>CDVProxy::CDVProxy(r);
R> }
R> return *this;
R>}
R>