Medical Imaging Interaction Toolkit  2023.12.99-63768887
Medical Imaging Interaction Toolkit
mitkIPropertyPersistence.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 mitkIPropertyPersistence_h
14 #define mitkIPropertyPersistence_h
15 
17 #include <mitkServiceInterface.h>
18 
19 namespace mitk
20 {
34  {
35  public:
36  virtual ~IPropertyPersistence();
37 
38  using InfoResultType = std::list<PropertyPersistenceInfo::ConstPointer>;
40 
52  virtual bool AddInfo(const PropertyPersistenceInfo *info, bool overwrite = false) = 0;
53 
59  virtual InfoResultType GetInfo(const std::string &propertyName, bool allowNameRegEx = true) const = 0;
60 
73  virtual InfoResultType GetInfo(const std::string &propertyName,
74  const MimeTypeNameType &mime,
75  bool allowMimeWildCard = false,
76  bool allowNameRegEx = true) const = 0;
77 
84  virtual InfoResultType GetInfoByKey(const std::string &persistenceKey, bool allowKeyRegEx = true) const = 0;
85 
92  virtual bool HasInfo(const std::string &propertyName, bool allowNameRegEx = true) const = 0;
93 
96  virtual void RemoveAllInfo() = 0;
97 
102  virtual void RemoveInfo(const std::string &propertyName) = 0;
103 
109  virtual void RemoveInfo(const std::string &propertyName, const MimeTypeNameType &mime) = 0;
110  };
111 }
112 
113 MITK_DECLARE_SERVICE_INTERFACE(mitk::IPropertyPersistence, "org.mitk.IPropertyPersistence")
114 
115 #endif
mitkPropertyPersistenceInfo.h
mitkServiceInterface.h
mitk
Find image slices visible on a given plane.
Definition: RenderingTests.dox:1
mitk::IPropertyPersistence::MimeTypeNameType
PropertyPersistenceInfo::MimeTypeNameType MimeTypeNameType
Definition: mitkIPropertyPersistence.h:39
mitk::IPropertyPersistence::InfoResultType
std::list< PropertyPersistenceInfo::ConstPointer > InfoResultType
Definition: mitkIPropertyPersistence.h:38
mitk::PropertyPersistenceInfo::MimeTypeNameType
std::string MimeTypeNameType
Definition: mitkPropertyPersistenceInfo.h:39
mitk::PropertyPersistenceInfo
Property persistence info. This class is used to specify the way the persistance of a property of Bas...
Definition: mitkPropertyPersistenceInfo.h:32
MITK_DECLARE_SERVICE_INTERFACE
#define MITK_DECLARE_SERVICE_INTERFACE(IFace, IId)
Definition: mitkServiceInterface.h:26
MITKCORE_EXPORT
#define MITKCORE_EXPORT
Definition: MitkCoreExports.h:15
mitk::IPropertyPersistence
Interface of property persistence service.
Definition: mitkIPropertyPersistence.h:33