Page MenuHomePhabricator

mitkDataStorageEditorInput.patch

Authored By
vongruen
Apr 20 2010, 10:38 AM
Size
964 B
Referenced Files
None
Subscribers
None

mitkDataStorageEditorInput.patch

Index: mitkDataStorageEditorInput.cpp
===================================================================
--- mitkDataStorageEditorInput.cpp (revision 22256)
+++ mitkDataStorageEditorInput.cpp (working copy)
@@ -23,6 +23,15 @@
namespace mitk
{
+DataStorageEditorInput::DataStorageEditorInput()
+{
+}
+
+DataStorageEditorInput::DataStorageEditorInput(IDataStorageReference::Pointer ref)
+{
+ m_DataStorageRef = ref;
+}
+
bool DataStorageEditorInput::Exists() const
{
return true;
Index: mitkDataStorageEditorInput.h
===================================================================
--- mitkDataStorageEditorInput.h (revision 22256)
+++ mitkDataStorageEditorInput.h (working copy)
@@ -31,6 +31,9 @@
public:
berryObjectMacro(DataStorageEditorInput);
+ DataStorageEditorInput();
+ DataStorageEditorInput(IDataStorageReference::Pointer ref);
+
bool Exists() const;
std::string GetName() const;
std::string GetToolTipText() const;

File Metadata

Mime Type
text/plain
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
488
Default Alt Text
mitkDataStorageEditorInput.patch (964 B)

Event Timeline

Reworked DataStorageEditorInput File