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;