aGrUM  0.16.0
approximationSchemeListener.cpp
Go to the documentation of this file.
1 
31 
32 namespace gum {
33 
36  __sch(sch) {
37  GUM_CONSTRUCTOR(ApproximationSchemeListener);
38 
40  (__sch), onProgress, (*this), ApproximationSchemeListener::whenProgress);
42  }
43 
45  const ApproximationSchemeListener& other) :
46  __sch(other.__sch) {
47  GUM_CONS_CPY(ApproximationSchemeListener);
49  "No copy constructor for ApproximationSchemeListener");
50  }
51 
53  GUM_DESTRUCTOR(ApproximationSchemeListener);
54  }
55 
58  GUM_CONS_CPY(ApproximationSchemeListener);
60  "No copy constructor for ApproximationSchemeListener");
61  }
62 
63 } // namespace gum
Copyright 2005-2019 Pierre-Henri WUILLEMIN et Christophe GONZALES (LIP6) {prenom.nom}_at_lip6.fr.
virtual void whenStop(const void *src, const std::string message)=0
When it stops.
Copyright 2005-2019 Pierre-Henri WUILLEMIN et Christophe GONZALES (LIP6) {prenom.nom}_at_lip6.fr.
Definition: agrum.h:25
virtual ~ApproximationSchemeListener()
Class destructor.
ApproximationSchemeListener(IApproximationSchemeConfiguration &sch)
Class constructor.
#define GUM_CONNECT(sender, signal, receiver, target)
Definition: listener.h:98
IApproximationSchemeConfiguration & __sch
The scheme configuration.
virtual void whenProgress(const void *src, const Size step, const double error, const double time)=0
When progress was made.
#define GUM_ERROR(type, msg)
Definition: exceptions.h:55
ApproximationSchemeListener & operator=(const ApproximationSchemeListener &other)
Copy operator.
The ApproximationSchemeListener class.