Changes in src/Shapes/Shape.hpp [997784:205d9b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Shapes/Shape.hpp
r997784 r205d9b 16 16 class Shape 17 17 { 18 friend Shape operator&&(const Shape&,const Shape&);19 friend Shape operator||(const Shape&,const Shape&);20 friend Shape operator!(const Shape&);21 18 public: 22 19 typedef boost::shared_ptr<Shape_impl> impl_ptr; 20 friend impl_ptr getShapeImpl(const Shape&); 23 21 24 22 Shape(impl_ptr); … … 26 24 virtual ~Shape(); 27 25 28 bool isInside(const Vector &point) ;26 bool isInside(const Vector &point) const; 29 27 30 28 Shape &operator=(const Shape& rhs);
Note:
See TracChangeset
for help on using the changeset viewer.