diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/documentation/doxygen/code_snippets/MinimalApplicationSnippet.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer/documentation/doxygen/code_snippets/MinimalApplicationSnippet.cpp index 6b052c48a4..db9873a898 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/documentation/doxygen/code_snippets/MinimalApplicationSnippet.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/documentation/doxygen/code_snippets/MinimalApplicationSnippet.cpp @@ -1,39 +1,21 @@ /*============================================================================ The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Use of this source code is governed by a 3-clause BSD license that can be found in the LICENSE file. ============================================================================*/ -#include "CustomViewer.h" -#include "CustomViewerWorkbenchAdvisor.h" - -#include - -CustomViewer::CustomViewer() -{ -} - -CustomViewer::~CustomViewer() -{ -} //! [MinimalApplicationClass_StartMethod] -int CustomViewer::Start() -{ - berry::Display *display = berry::PlatformUI::CreateDisplay(); +berry::Display *display = berry::PlatformUI::CreateDisplay(); - wbAdvisor.reset(new berry::WorkbenchAdvisor); - int code = berry::PlatformUI::CreateAndRunWorkbench(display, wbAdvisor.data()); +wbAdvisor.reset(new berry::WorkbenchAdvisor); +int code = berry::PlatformUI::CreateAndRunWorkbench(display, wbAdvisor.data()); - // exit the application with an appropriate return code - return code == berry::PlatformUI::RETURN_RESTART ? EXIT_RESTART : EXIT_OK; -} +// exit the application with an appropriate return code +return code == berry::PlatformUI::RETURN_RESTART ? EXIT_RESTART : EXIT_OK; //! [MinimalApplicationClass_StartMethod] -void CustomViewer::Stop() -{ -}