/*============================================================================= NOTE: THIS FILE IS A HANDMADE WRAPPER FOR THE ManagedITK PROJECT. Project: ManagedITK Program: Insight Segmentation & Registration Toolkit Module: itkManagedSpatialOrientation.cxx Language: C++/CLI Author: Dan Mueller $Date: 2007-04-11 16:26:16 +1000 (Wed, 11 Apr 2007) $ $Revision: 128 $ Copyright (c) Queensland University of Technology (QUT) 2007. All rights reserved. Portions of this code are covered under the ITK and VTK copyright. See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm 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. =============================================================================*/ #pragma once #ifndef __itkManagedSpatialOrientation_cxx #define __itkManagedSpatialOrientation_cxx // Use some managed namespaces #using #using using namespace System; using namespace System::Diagnostics; namespace itk { public enum class itkSpatialOrientationEnum { RIP, LIP, RSP, LSP, RIA, LIA, RSA, LSA, IRP, ILP, SRP, SLP, IRA, ILA, SRA, SLA, RPI, LPI, RAI, LAI, RPS, LPS, RAS, LAS, PRI, PLI, ARI, ALI, PRS, PLS, ARS, ALS, IPR, SPR, IAR, SAR, IPL, SPL, IAL, SAL, PIR, PSR, AIR, ASR, PIL, PSL, AIL, ASL }; } // end namespace itk #endif