diff --git a/Modules/US/Testing/mitkUSImage2DTest.cpp b/Modules/US/Testing/mitkUSImage2DTest.cpp deleted file mode 100644 index 89f73cfe27..0000000000 --- a/Modules/US/Testing/mitkUSImage2DTest.cpp +++ /dev/null @@ -1,49 +0,0 @@ -/*========================================================================= - -Program: Medical Imaging & Interaction Toolkit -Language: C++ -Date: $Date: 2008-02-25 17:27:17 +0100 (Mo, 25 Feb 2008) $ -Version: $Revision: 7837 $ - -Copyright (c) German Cancer Research Center, Division of Medical and -Biological Informatics. All rights reserved. -See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. - -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. - -=========================================================================*/ - -#include "mitkUSImage2D.h" -#include "mitkTestingMacros.h" - - -class mitkUSImage2DTestClass -{ -public: - - // Anm: Implementierung der einzelnen Testmethoden - - static void TestInstantiation() - { - // let's create an object of our class - mitk::USImage2D::Pointer us2d = mitk::USImage2D::New(); - MITK_TEST_CONDITION_REQUIRED(us2d.IsNotNull(), "USImage2D should not be null after instantiation"); - } - - - -}; - -/** -* This function is testing methods of the class USImage2D. -*/ -int mitkUSImage2DTest(int /* argc */, char* /*argv*/[]) -{ - MITK_TEST_BEGIN("mitkUSImage2DTest"); - - mitkUSImage2DTestClass::TestInstantiation(); - - MITK_TEST_END(); -} \ No newline at end of file diff --git a/Modules/US/USFilters/mitkUSImage2D.cpp b/Modules/US/USFilters/mitkUSImage2D.cpp deleted file mode 100644 index 275525fcac..0000000000 --- a/Modules/US/USFilters/mitkUSImage2D.cpp +++ /dev/null @@ -1,31 +0,0 @@ -/*========================================================================= - -Program: Medical Imaging & Interaction Toolkit -Language: C++ -Date: $Date$ -Version: $Revision$ - -Copyright (c) German Cancer Research Center, Division of Medical and -Biological Informatics. All rights reserved. -See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. - -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. - -=========================================================================*/ - -#include "mitkUSImage2D.h" - - -mitk::USImage2D::USImage2D() : IplImage() -{ - -} - -mitk::USImage2D::~USImage2D() -{ - -} - - diff --git a/Modules/US/USFilters/mitkUSImage2D.h b/Modules/US/USFilters/mitkUSImage2D.h deleted file mode 100644 index 1f2dad1a01..0000000000 --- a/Modules/US/USFilters/mitkUSImage2D.h +++ /dev/null @@ -1,55 +0,0 @@ -/*========================================================================= - -Program: Medical Imaging & Interaction Toolkit -Language: C++ -Date: $Date$ -Version: $Revision$ - -Copyright (c) German Cancer Research Center, Division of Medical and -Biological Informatics. All rights reserved. -See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. - -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. - -=========================================================================*/ - - -#ifndef MITKUSIMAGE2D_H_HEADER_INCLUDED_ -#define MITKUSIMAGE2D_H_HEADER_INCLUDED_ - -#include -#include -#include -#include -#include -#include "mitkUSImageMetadata.h" - -namespace mitk { - - /**Documentation - * \brief TODO - * \ingroup US - */ - class MitkUS_EXPORT USImage2D : public itk::Object, public IplImage - { - public: - mitkClassMacro(USImage2D, itk::Object); - itkNewMacro(Self); - itkGetMacro(Geometry, mitk::Geometry2D::Pointer); - itkSetMacro(Geometry, mitk::Geometry2D::Pointer); - itkGetMacro(Metadata, mitk::USImageMetadata::Pointer); - itkSetMacro(Metadata, mitk::USImageMetadata::Pointer); - - int Test(); - - protected: - USImage2D(); - virtual ~USImage2D(); - mitk::Geometry2D::Pointer m_Geometry; - mitk::USImageMetadata::Pointer m_Metadata; - - }; -} // namespace mitk -#endif \ No newline at end of file