#include <zValidator.h>
Public Member Functions | |
zValidatorAll (Triad _positive, Triad _marked) | |
zValidatorAll (zValidatorAll const &other) | |
void | operator= (zValidatorAll const &other) |
overloaded assignment operator | |
virtual | ~zValidatorAll () |
zValidator * | copy (void) const |
Static Public Member Functions | |
static zValidator * | create (Triad _positive, Triad _marked) |
Protected Member Functions | |
bool | isValid (gVectorExtra< nNetObjectID > &owners, gVectorExtra< nNetObjectID > &teamOwners, gCycle *possibleUser) |
Definition at line 100 of file zValidator.h.
Definition at line 131 of file zValidator.cpp.
Referenced by copy(), and create().
00131 : 00132 zValidator(_positive, _marked) 00133 { }
zValidatorAll::zValidatorAll | ( | zValidatorAll const & | other | ) |
virtual zValidatorAll::~zValidatorAll | ( | ) | [inline, virtual] |
zValidator * zValidatorAll::create | ( | Triad | _positive, | |
Triad | _marked | |||
) | [static] |
Reimplemented from zValidator.
Definition at line 126 of file zValidator.cpp.
References zValidatorAll().
00127 { 00128 return new zValidatorAll(_positive, _marked); 00129 }
void zValidatorAll::operator= | ( | zValidatorAll const & | other | ) |
overloaded assignment operator
Definition at line 139 of file zValidator.cpp.
References zValidator::operator=().
00140 { 00141 this->zValidator::operator=(other); 00142 }
zValidator * zValidatorAll::copy | ( | void | ) | const [virtual] |
Reimplemented from zValidator.
Definition at line 144 of file zValidator.cpp.
References zValidatorAll().
00144 { 00145 return new zValidatorAll(*this); 00146 }
bool zValidatorAll::isValid | ( | gVectorExtra< nNetObjectID > & | owners, | |
gVectorExtra< nNetObjectID > & | teamOwners, | |||
gCycle * | possibleUser | |||
) | [inline, protected, virtual] |