mirror of https://github.com/CGAL/cgal
Remove extra ';'
This commit is contained in:
parent
42d3fa3562
commit
0a11128fc8
|
|
@ -9,7 +9,7 @@ public:
|
||||||
Notifier(): data_(0){}
|
Notifier(): data_(0){}
|
||||||
|
|
||||||
typedef CGAL::Kinetic::Ref_counted<Notifier> Base;
|
typedef CGAL::Kinetic::Ref_counted<Notifier> Base;
|
||||||
CGAL_KINETIC_LISTENER1(DATA_CHANGED);
|
CGAL_KINETIC_LISTENER1(DATA_CHANGED)
|
||||||
public:
|
public:
|
||||||
|
|
||||||
int data() const {return data_;}
|
int data() const {return data_;}
|
||||||
|
|
@ -28,7 +28,7 @@ template <class Data>
|
||||||
class Receiver: public CGAL::Kinetic::Ref_counted<Receiver<Data> > {
|
class Receiver: public CGAL::Kinetic::Ref_counted<Receiver<Data> > {
|
||||||
typedef Receiver<Data> This;
|
typedef Receiver<Data> This;
|
||||||
typedef ::Notifier<Data> Notifier;
|
typedef ::Notifier<Data> Notifier;
|
||||||
CGAL_KINETIC_LISTEN1(Notifier, DATA_CHANGED, ping());
|
CGAL_KINETIC_LISTEN1(Notifier, DATA_CHANGED, ping())
|
||||||
public:
|
public:
|
||||||
Receiver( Notifier* p){
|
Receiver( Notifier* p){
|
||||||
CGAL_KINETIC_INIT_LISTEN(Notifier, p);
|
CGAL_KINETIC_INIT_LISTEN(Notifier, p);
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ struct Trivial_kds: CGAL::Kinetic::Ref_counted<Trivial_kds<Traits> >
|
||||||
typedef typename Traits::Simulator::Time Time;
|
typedef typename Traits::Simulator::Time Time;
|
||||||
typedef typename Traits::Active_points_1_table::Key Point_key;
|
typedef typename Traits::Active_points_1_table::Key Point_key;
|
||||||
typedef typename Traits::Simulator::Event_key Event_key;
|
typedef typename Traits::Simulator::Event_key Event_key;
|
||||||
CGAL_KINETIC_DECLARE_LISTENERS(typename Traits::Simulator, typename Traits::Active_points_1_table);
|
CGAL_KINETIC_DECLARE_LISTENERS(typename Traits::Simulator, typename Traits::Active_points_1_table)
|
||||||
public:
|
public:
|
||||||
typedef Trivial_event<Point, Time, This> Event;
|
typedef Trivial_event<Point, Time, This> Event;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue