Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
berryIBerryPreferences.cpp
Go to the documentation of this file.
1 /*===================================================================
2 
3 BlueBerry Platform
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #include "berryIBerryPreferences.h"
18 
19 namespace berry {
20 
22 {
23 }
24 
26  const QString& oldValue, const QString& newValue)
27  : m_Source(source)
28  , m_Property(property)
29  , m_OldValue(oldValue)
30  , m_NewValue(newValue)
31 {
32 }
33 
35 {
36  return m_Source;
37 }
38 
40 {
41  return m_Property;
42 }
43 
45 {
46  return m_OldValue;
47 }
48 
50 {
51  return m_NewValue;
52 }
53 
54 }
ChangeEvent(IBerryPreferences *source, const QString &property, const QString &oldValue, const QString &newValue)