Include :
- aggiunto l'operatore == alla struttura SelData (per consentire confronti con funzioni STL direttamente sui contenitori).
This commit is contained in:
@@ -36,6 +36,8 @@ struct SelData {
|
||||
: nId( nI), nSub( SEL_SUB_ALL) {}
|
||||
SelData( int nI, int nS)
|
||||
: nId( nI), nSub( nS) {}
|
||||
bool operator == ( const SelData& other) const
|
||||
{ return ( nId == other.nId && nSub == other.nSub) ; }
|
||||
} ;
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user