Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
berryIBerryPreferences.cpp
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 #include "berryIBerryPreferences.h"
14 
15 namespace berry {
16 
18 {
19 }
20 
22  const QString& oldValue, const QString& newValue)
23  : m_Source(source)
24  , m_Property(property)
25  , m_OldValue(oldValue)
26  , m_NewValue(newValue)
27 {
28 }
29 
31 {
32  return m_Source;
33 }
34 
36 {
37  return m_Property;
38 }
39 
41 {
42  return m_OldValue;
43 }
44 
46 {
47  return m_NewValue;
48 }
49 
50 }
ChangeEvent(IBerryPreferences *source, const QString &property, const QString &oldValue, const QString &newValue)