NEOCCA bindings Specification  0.2.8
ParameterSetListener.hh
Go to the documentation of this file.
1 #ifndef neo_ParameterSetListener_h_seen
2 #define neo_ParameterSetListener_h_seen
3 namespace neo {
4 namespace cca {
5 namespace ports {
6 
7 
13 public:
14 
15  virtual ~ParameterSetListener() {}
16 
23  virtual void updatedParameterValue(std::string portName, std::string fieldName)= 0;
24 
25 }; // end interface ParameterSetListener
26 
27 } // end namespace ports
28 } // end namespace cca
29 } // end namespace neo
30 #endif // neo_ParameterSetListener_h_seen
This interface is typically implemented by a component using the ParameterPortFactory in a very dynam...
Definition: ParameterSetListener.hh:12
virtual ~ParameterSetListener()
Definition: ParameterSetListener.hh:15
This is neoclassic – the ::classic::gov::cca headers updated to be similar to the official CCA speci...
Definition: neocca.hh:62
virtual void updatedParameterValue(std::string portName, std::string fieldName)=0
The component wishing to be told after a parameter is changed implements this function.