diff --git a/MMCore/latest/_m_m_event_callback_8h_source.html b/MMCore/latest/_m_m_event_callback_8h_source.html index f6f8c7d..b3da21e 100644 --- a/MMCore/latest/_m_m_event_callback_8h_source.html +++ b/MMCore/latest/_m_m_event_callback_8h_source.html @@ -119,23 +119,23 @@
65 std::cout << "onPixelSizeAffineChanged() " << v0 << "-" << v1 << "-" << v2 << "-" << v3 << "-" << v4 << "-" << v5 << '\n';
66 }
67
-
68 virtual void onStagePositionChanged(char* name, double pos)
+
68 virtual void onStagePositionChanged(const char* name, double pos)
69 {
70 std::cout << "onStagePositionChanged()" << name << " " << pos << '\n';
71 }
72
-
73 virtual void onXYStagePositionChanged(char* name, double xpos, double ypos)
+
73 virtual void onXYStagePositionChanged(const char* name, double xpos, double ypos)
74 {
75 std::cout << "onXYStagePositionChanged()" << name << " " << xpos;
76 std::cout << " " << ypos << '\n';
77 }
78
-
79 virtual void onExposureChanged(char* name, double newExposure)
+
79 virtual void onExposureChanged(const char* name, double newExposure)
80 {
81 std::cout << "onExposureChanged()" << name << " " << newExposure << '\n';
82 }
83
-
84 virtual void onSLMExposureChanged(char* name, double newExposure)
+
84 virtual void onSLMExposureChanged(const char* name, double newExposure)
85 {
86 std::cout << "onSLMExposureChanged()" << name << " " << newExposure << '\n';
87 }
diff --git a/MMCore/latest/class_m_m_event_callback-members.html b/MMCore/latest/class_m_m_event_callback-members.html index 7495377..9b339e9 100644 --- a/MMCore/latest/class_m_m_event_callback-members.html +++ b/MMCore/latest/class_m_m_event_callback-members.html @@ -48,15 +48,15 @@ MMEventCallback() (defined in MMEventCallback)MMEventCallbackinline onChannelGroupChanged(const char *newChannelGroupName) (defined in MMEventCallback)MMEventCallbackinlinevirtual onConfigGroupChanged(const char *groupName, const char *newConfigName) (defined in MMEventCallback)MMEventCallbackinlinevirtual - onExposureChanged(char *name, double newExposure) (defined in MMEventCallback)MMEventCallbackinlinevirtual + onExposureChanged(const char *name, double newExposure) (defined in MMEventCallback)MMEventCallbackinlinevirtual onPixelSizeAffineChanged(double v0, double v1, double v2, double v3, double v4, double v5) (defined in MMEventCallback)MMEventCallbackinlinevirtual onPixelSizeChanged(double newPixelSizeUm) (defined in MMEventCallback)MMEventCallbackinlinevirtual onPropertiesChanged() (defined in MMEventCallback)MMEventCallbackinlinevirtual onPropertyChanged(const char *name, const char *propName, const char *propValue) (defined in MMEventCallback)MMEventCallbackinlinevirtual - onSLMExposureChanged(char *name, double newExposure) (defined in MMEventCallback)MMEventCallbackinlinevirtual - onStagePositionChanged(char *name, double pos) (defined in MMEventCallback)MMEventCallbackinlinevirtual + onSLMExposureChanged(const char *name, double newExposure) (defined in MMEventCallback)MMEventCallbackinlinevirtual + onStagePositionChanged(const char *name, double pos) (defined in MMEventCallback)MMEventCallbackinlinevirtual onSystemConfigurationLoaded() (defined in MMEventCallback)MMEventCallbackinlinevirtual - onXYStagePositionChanged(char *name, double xpos, double ypos) (defined in MMEventCallback)MMEventCallbackinlinevirtual + onXYStagePositionChanged(const char *name, double xpos, double ypos) (defined in MMEventCallback)MMEventCallbackinlinevirtual ~MMEventCallback() (defined in MMEventCallback)MMEventCallbackinlinevirtual diff --git a/MMCore/latest/class_m_m_event_callback.html b/MMCore/latest/class_m_m_event_callback.html index e624d98..cc8bb68 100644 --- a/MMCore/latest/class_m_m_event_callback.html +++ b/MMCore/latest/class_m_m_event_callback.html @@ -69,18 +69,18 @@ virtual void onPixelSizeAffineChanged (double v0, double v1, double v2, double v3, double v4, double v5)   - -virtual void onStagePositionChanged (char *name, double pos) -  - -virtual void onXYStagePositionChanged (char *name, double xpos, double ypos) -  - -virtual void onExposureChanged (char *name, double newExposure) -  - -virtual void onSLMExposureChanged (char *name, double newExposure) -  + +virtual void onStagePositionChanged (const char *name, double pos) +  + +virtual void onXYStagePositionChanged (const char *name, double xpos, double ypos) +  + +virtual void onExposureChanged (const char *name, double newExposure) +  + +virtual void onSLMExposureChanged (const char *name, double newExposure) + 
The documentation for this class was generated from the following file: