0026765: Visualization - drop TKVoxel toolkit
[occt.git] / src / Voxel / Voxel_Writer.hxx
diff --git a/src/Voxel/Voxel_Writer.hxx b/src/Voxel/Voxel_Writer.hxx
deleted file mode 100644 (file)
index de8bfd8..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-// Created on: 2008-08-28
-// Created by: Vladislav ROMASHKO
-// Copyright (c) 2008-2014 OPEN CASCADE SAS
-//
-// This file is part of Open CASCADE Technology software library.
-//
-// This library is free software; you can redistribute it and/or modify it under
-// the terms of the GNU Lesser General Public License version 2.1 as published
-// by the Free Software Foundation, with special exception defined in the file
-// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
-// distribution for complete text of the license and disclaimer of any warranty.
-//
-// Alternatively, this file may be used under the terms of Open CASCADE
-// commercial license or contractual agreement.
-
-#ifndef _Voxel_Writer_HeaderFile
-#define _Voxel_Writer_HeaderFile
-
-#include <Standard.hxx>
-#include <Standard_DefineAlloc.hxx>
-#include <Standard_Handle.hxx>
-
-#include <Voxel_VoxelFileFormat.hxx>
-#include <Standard_Address.hxx>
-#include <Standard_Boolean.hxx>
-class Voxel_BoolDS;
-class Voxel_ColorDS;
-class Voxel_FloatDS;
-class TCollection_ExtendedString;
-
-
-//! Writes a cube of voxels on disk.
-class Voxel_Writer 
-{
-public:
-
-  DEFINE_STANDARD_ALLOC
-
-  
-  //! An empty constructor.
-  Standard_EXPORT Voxel_Writer();
-  
-  //! Defines the file format for voxels.
-  //! ASCII - slow and occupies more space on disk.
-  //! BINARY - fast and occupies less space on disk.
-  Standard_EXPORT void SetFormat (const Voxel_VoxelFileFormat format);
-  
-  //! Defines the voxels (1bit).
-  Standard_EXPORT void SetVoxels (const Voxel_BoolDS& voxels);
-  
-  //! Defines the voxels (4bit).
-  Standard_EXPORT void SetVoxels (const Voxel_ColorDS& voxels);
-  
-  //! Defines the voxels (4bytes).
-  Standard_EXPORT void SetVoxels (const Voxel_FloatDS& voxels);
-  
-  //! Writes the voxels on disk
-  //! using the defined format and file name.
-  Standard_EXPORT Standard_Boolean Write (const TCollection_ExtendedString& file) const;
-
-
-
-
-protected:
-
-
-
-
-
-private:
-
-  
-  //! Writes 1bit voxels on disk in ASCII format.
-  Standard_EXPORT Standard_Boolean WriteBoolAsciiVoxels (const TCollection_ExtendedString& file) const;
-  
-  //! Writes 4bit voxels on disk in ASCII format.
-  Standard_EXPORT Standard_Boolean WriteColorAsciiVoxels (const TCollection_ExtendedString& file) const;
-  
-  //! Writes 4bytes voxels on disk in ASCII format.
-  Standard_EXPORT Standard_Boolean WriteFloatAsciiVoxels (const TCollection_ExtendedString& file) const;
-  
-  //! Writes 1bit voxels on disk in BINARY format.
-  Standard_EXPORT Standard_Boolean WriteBoolBinaryVoxels (const TCollection_ExtendedString& file) const;
-  
-  //! Writes 4bit voxels on disk in BINARY format.
-  Standard_EXPORT Standard_Boolean WriteColorBinaryVoxels (const TCollection_ExtendedString& file) const;
-  
-  //! Writes 4bytes voxels on disk in BINARY format.
-  Standard_EXPORT Standard_Boolean WriteFloatBinaryVoxels (const TCollection_ExtendedString& file) const;
-
-
-  Voxel_VoxelFileFormat myFormat;
-  Standard_Address myBoolVoxels;
-  Standard_Address myColorVoxels;
-  Standard_Address myFloatVoxels;
-
-
-};
-
-
-
-
-
-
-
-#endif // _Voxel_Writer_HeaderFile