home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / freedraft.tar.gz / freedraft.tar / FREEdraft-050298 / CORE / selection.cpp < prev    next >
C/C++ Source or Header  |  1997-12-05  |  2KB  |  53 lines

  1. // selection.cpp
  2.  
  3. // Copyright (C) 1997  Cliff Johnson                                       //
  4. //                                                                         //
  5. // This program is free software; you can redistribute it and/or           //
  6. // modify it under the terms of the GNU  General Public                    //
  7. // License as published by the Free Software Foundation; either            //
  8. // version 2 of the License, or (at your option) any later version.        //
  9. //                                                                         //
  10. // This software is distributed in the hope that it will be useful,        //
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of          //
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU       //
  13. // General Public License for more details.                                //
  14. //                                                                         //
  15. // You should have received a copy of the GNU General Public License       //
  16. // along with this software (see COPYING.LIB); if not, write to the        //
  17. // Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. //
  18.  
  19. #include <selection.h> 
  20.  
  21. Selection::Selection(const Handle& h, const Point& p, int b ):
  22.     handle(h), point(p), button(b) {}
  23.  
  24. Selection::Selection(const Selection& s)
  25. {
  26.     handle = s.handle;
  27.     point = s.point;
  28.     button = s.button;
  29. }
  30.  
  31. Selection& Selection::operator=(const Selection& s)
  32. {
  33.     handle = s.handle;
  34.     point = s.point;
  35.     button = s.button;
  36.     return *this;
  37. }
  38.  
  39. bool operator==(const Selection& s1, const Selection& s2)
  40. {
  41.     return ((s1.handle == s2.handle) && 
  42.         (s1.point == s2.point)   &&
  43.         (s1.button == s2.button));
  44. }
  45.  
  46. ostream& operator<<(ostream& os, const Selection& s)
  47. {
  48.     os << "Selection:\n";
  49.     os << "handle = " << s.handle << '\n';
  50.     os << "point = " << s.point << " button = " << s.button << '\n';
  51.     return os;
  52. }
  53.