Medical Imaging Interaction Toolkit  2023.12.00
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
IChangeText.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef ICHANGETEXT_H_
14 #define ICHANGETEXT_H_
15 
16 #include <berryObject.h>
17 
18 #include "org_mitk_example_gui_extensionpointdefinition_Export.h"
19 
20 struct org_mitk_example_gui_extensionpointdefinition_EXPORT IChangeText : public virtual berry::Object
21 {
23 
24  ~IChangeText() override;
25 
26  virtual QString ChangeText(const QString &s) = 0;
27 };
28 
29 Q_DECLARE_INTERFACE(IChangeText, "org.mitk.example.IChangeText")
30 
31 #endif /*ICHANGETEXT_H_*/
berry::Object
Light weight base class for most BlueBerry classes.
Definition: berryObject.h:72
berryObjectMacro
#define berryObjectMacro(...)
Definition: berryMacros.h:33
berryObject.h
IChangeText
Definition: IChangeText.h:20