mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-06 12:57:35 +08:00
Fix the replacement issue when Standard_CString was replaced to const char* even when it was const. Now "const Standard_CString" is replaced with "const char* const". Only places which were before const Standard_CString is replaced.
61 lines
2.2 KiB
C++
61 lines
2.2 KiB
C++
// Copyright (c) 2021 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.
|
|
|
|
#include <BinTools.hxx>
|
|
#include <BinTools_ShapeSetBase.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
const char* const BinTools_ShapeSetBase::THE_ASCII_VERSIONS[BinTools_FormatVersion_UPPER + 1] = {
|
|
"",
|
|
"Open CASCADE Topology V1 (c)",
|
|
"Open CASCADE Topology V2 (c)",
|
|
"Open CASCADE Topology V3 (c)",
|
|
"Open CASCADE Topology V4, (c) Open Cascade"};
|
|
|
|
//=======================================================================
|
|
// function : operator << (gp_Pnt)
|
|
// purpose :
|
|
//=======================================================================
|
|
Standard_OStream& operator<<(Standard_OStream& OS, const gp_Pnt& P)
|
|
{
|
|
BinTools::PutReal(OS, P.X());
|
|
BinTools::PutReal(OS, P.Y());
|
|
BinTools::PutReal(OS, P.Z());
|
|
return OS;
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
BinTools_ShapeSetBase::BinTools_ShapeSetBase()
|
|
: myFormatNb(BinTools_FormatVersion_CURRENT),
|
|
myWithTriangles(false),
|
|
myWithNormals(false)
|
|
{
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
BinTools_ShapeSetBase::~BinTools_ShapeSetBase() = default;
|
|
|
|
//=================================================================================================
|
|
|
|
void BinTools_ShapeSetBase::SetFormatNb(const int theFormatNb)
|
|
{
|
|
Standard_ASSERT_RETURN(theFormatNb >= BinTools_FormatVersion_LOWER
|
|
&& theFormatNb <= BinTools_FormatVersion_UPPER,
|
|
"Error: unsupported BinTools version.",
|
|
Standard_VOID_RETURN);
|
|
|
|
myFormatNb = theFormatNb;
|
|
}
|