cgintset.h 417 B

123456789101112131415161718192021
  1. #ifndef CGINTSET_H
  2. #define CGINTSET_H
  3. struct CGIntSet : std::set<int>{
  4. int insert( int n );
  5. int insert( const CGIntSet &t );
  6. int xinsert( const CGIntSet &t,const CGIntSet &p );
  7. int erase( int n );
  8. int erase( const CGIntSet &t );
  9. int xerase( const CGIntSet &t,const CGIntSet &p );
  10. iterator erase( iterator it );
  11. };
  12. typedef CGIntSet::iterator CGIntIter;
  13. typedef CGIntSet::const_iterator CGIntCIter;
  14. #endif