Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkRdfUri.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,
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 #ifndef MITKRDFURI_H
18 #define MITKRDFURI_H
19 
20 #include <MitkRDFExports.h>
21 
22 #include <string>
23 
24 namespace mitk {
28  class MITKRDF_EXPORT RdfUri
29  {
30  public:
31 
35  RdfUri();
36 
41  explicit RdfUri(std::string uri);
42 
43  virtual ~RdfUri();
44 
49  std::string ToString() const;
50 
55  void SetUri(std::string uri);
56 
57  bool operator==(const RdfUri &u) const;
58  bool operator!=(const RdfUri &u) const;
59 
60  private:
61  std::string m_Uri;
62  };
63 }
64 
65 #endif // MITKRDFURI_H
MITKCORE_EXPORT bool operator!=(const InteractionEvent &a, const InteractionEvent &b)
DataCollection - Class to facilitate loading/accessing structured data.
MITKCORE_EXPORT bool operator==(const InteractionEvent &a, const InteractionEvent &b)