Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Shapes/Shape.hpp

    r997784 r205d9b  
    1616class Shape
    1717{
    18 friend Shape operator&&(const Shape&,const Shape&);
    19 friend Shape operator||(const Shape&,const Shape&);
    20 friend Shape operator!(const Shape&);
    2118public:
    2219  typedef boost::shared_ptr<Shape_impl> impl_ptr;
     20  friend impl_ptr getShapeImpl(const Shape&);
    2321
    2422  Shape(impl_ptr);
     
    2624  virtual ~Shape();
    2725
    28   bool isInside(const Vector &point);
     26  bool isInside(const Vector &point) const;
    2927
    3028  Shape &operator=(const Shape& rhs);
Note: See TracChangeset for help on using the changeset viewer.