wrap_itkbase.cxx

来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· CXX 代码 · 共 59 行

CXX
59
字号
/*=========================================================================

  Program:   Insight Segmentation & Registration Toolkit
  Module:    $RCSfile: wrap_ITKBase.cxx,v $
  Language:  C++
  Date:      $Date: 2003/09/10 14:30:12 $
  Version:   $Revision: 1.5 $

  Copyright (c) Insight Software Consortium. All rights reserved.
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.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.

=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif

#include "itkCommand.h"
#include "itkDataObject.h"
#include "itkDirectory.h"
#include "itkLightObject.h"
#include "itkObject.h"
#include "itkLightProcessObject.h"
#include "itkProcessObject.h"
#include "itkOutputWindow.h"
#include "itkVersion.h"
#include "itkTimeStamp.h"
#include "itkStringStream.h"
#include "itkDynamicLoader.h"

#ifdef CABLE_CONFIGURATION
#include "itkCSwigMacros.h"

namespace _cable_
{
  const char* const group = ITK_WRAP_GROUP(ITKBase);
  namespace wrappers
  {
    ITK_WRAP_OBJECT(Command);
    ITK_WRAP_OBJECT(DataObject);
    ITK_WRAP_OBJECT(Directory);
    ITK_WRAP_OBJECT(DynamicLoader);
    ITK_WRAP_OBJECT(LightObject);
    ITK_WRAP_OBJECT(Object);
    ITK_WRAP_OBJECT(LightProcessObject);
    ITK_WRAP_OBJECT(ProcessObject);
    ITK_WRAP_OBJECT(OutputWindow);
    ITK_WRAP_OBJECT(Version);
    typedef itk::TimeStamp itkTimeStamp;
    typedef itk::StringStream itkStringStream;
  }
}


#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?