This file is indexed.

/usr/include/InsightToolkit/Review/itkTransformIOBase.h is in libinsighttoolkit3-dev 3.20.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
/*=========================================================================

  Program:   Insight Segmentation & Registration Toolkit
  Module:    itkTransformIOBase.h
  Language:  C++
  Date:      $Date$
  Version:   $Revision$

  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.

=========================================================================*/
#ifndef __itkTransformIOBase_h
#define __itkTransformIOBase_h
#include "itkLightProcessObject.h"
#include "itkObjectFactory.h"
#include "itkTransformBase.h"
#include <list>
#include <iostream>
#include <fstream>
#include <string>
 
namespace itk
{
/** \class TransformIOBase
 * \brief Abstract superclass defining the Transform IO interface.
 *
 * TransformIOBase is a pure virtual base class for dervied classes that
 * read/write transform data. It's used by the TransformFileReader and 
 * TransformFileWriter classes.  End users don't directly manipulate classes
 * derived from TransformIOBase; the TransformIOFactory is used by 
 * the Reader/Writer to pick a concrete derived class to do the actual
 * reading/writing of transforms.
 */
class ITK_EXPORT TransformIOBase : public LightProcessObject
{
public:
  /** Standard class typedefs */
  typedef TransformIOBase    Self;
  typedef LightProcessObject Superclass;
  typedef SmartPointer<Self> Pointer;
  /** Run-time type information (and related methods). */
  itkTypeMacro(TransformIOBase, Superclass);

  /** Transform types */
  typedef TransformBase      TransformType;
  /** For writing, a const transform list gets passed in, for
   * reading, a non-const transform list is created from the file.
   */
  typedef TransformType::Pointer           TransformPointer;
  typedef std::list<TransformPointer>      TransformListType;
  typedef TransformType::ConstPointer      ConstTransformPointer;
  typedef std::list<ConstTransformPointer> ConstTransformListType;

  /** Set/Get the name of the file to be read. */
  itkSetStringMacro(FileName);
  itkGetStringMacro(FileName);

  /** Reads the data from disk into the memory buffer provided. */
  virtual void Read() = 0;

  /** Writes the transform list to disk. */
  virtual void Write() = 0;

  /** Determine the file type. Returns true if this TransformIO can read the
   * file specified. */
  virtual bool CanReadFile(const char*) = 0;
  /** Determine the file type. Returns true if this TransformIO can read the
   * file specified. */
  virtual bool CanWriteFile(const char*)  = 0;

  /** Get the list of transforms resulting from a file read */
  TransformListType &GetTransformList() { return m_ReadTransformList; }
  TransformListType &GetReadTransformList() { return m_ReadTransformList; }
  ConstTransformListType &GetWriteTransformList() { return m_WriteTransformList; }

  /** Set the list of transforms before writing */
  void SetTransformList(ConstTransformListType &transformList);

  /** Set the writer to append to the specified file */
  itkSetMacro( AppendMode, bool );
  itkGetConstMacro( AppendMode, bool );
  itkBooleanMacro( AppendMode );

protected:
  TransformIOBase();
  virtual ~TransformIOBase();
  void PrintSelf(std::ostream& os, Indent indent) const;

  void OpenStream(std::ofstream &out, bool binary);
  void CreateTransform(TransformPointer &ptr, const std::string &ClassName);

private:
  std::string             m_FileName;
  TransformListType       m_ReadTransformList;
  ConstTransformListType  m_WriteTransformList;
  bool                    m_AppendMode;
};
} // end namespace itk
#endif // __itkTransformIOBase