|
| 1 | +// Copyright (c) 2025 OPEN CASCADE SAS |
| 2 | +// |
| 3 | +// This file is part of Open CASCADE Technology software library. |
| 4 | +// |
| 5 | +// This library is free software; you can redistribute it and/or modify it under |
| 6 | +// the terms of the GNU Lesser General Public License version 2.1 as published |
| 7 | +// by the Free Software Foundation, with special exception defined in the file |
| 8 | +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT |
| 9 | +// distribution for complete text of the license and disclaimer of any warranty. |
| 10 | +// |
| 11 | +// Alternatively, this file may be used under the terms of Open CASCADE |
| 12 | +// commercial license or contractual agreement. |
| 13 | + |
| 14 | +//! @file AIS_DataMapOfIOStatus.hxx |
| 15 | +//! @brief Deprecated typedef for backward compatibility. |
| 16 | +//! @deprecated This header is deprecated since OCCT 8.0.0. |
| 17 | +//! Use NCollection types directly instead. |
| 18 | + |
| 19 | +#ifndef _AIS_DataMapOfIOStatus_hxx |
| 20 | +#define _AIS_DataMapOfIOStatus_hxx |
| 21 | + |
| 22 | +#include <Standard_Macro.hxx> |
| 23 | +#include <AIS_InteractiveObject.hxx> |
| 24 | +#include <AIS_GlobalStatus.hxx> |
| 25 | +#include <NCollection_DataMap.hxx> |
| 26 | + |
| 27 | +Standard_HEADER_DEPRECATED( |
| 28 | + "AIS_DataMapOfIOStatus.hxx is deprecated since OCCT 8.0.0. Use NCollection types directly.") |
| 29 | + |
| 30 | + Standard_DEPRECATED("AIS_DataMapOfIOStatus is deprecated, use " |
| 31 | + "NCollection_DataMap<opencascade::handle<AIS_InteractiveObject>, " |
| 32 | + "opencascade::handle<AIS_GlobalStatus>> directly") |
| 33 | +typedef NCollection_DataMap<opencascade::handle<AIS_InteractiveObject>, |
| 34 | + opencascade::handle<AIS_GlobalStatus>> |
| 35 | + AIS_DataMapOfIOStatus; |
| 36 | +Standard_DEPRECATED("AIS_DataMapIteratorOfDataMapOfIOStatus is deprecated, use " |
| 37 | + "NCollection_DataMap<opencascade::handle<AIS_InteractiveObject>, " |
| 38 | + "opencascade::handle<AIS_GlobalStatus>>::Iterator directly") |
| 39 | +typedef NCollection_DataMap<opencascade::handle<AIS_InteractiveObject>, |
| 40 | + opencascade::handle<AIS_GlobalStatus>>::Iterator |
| 41 | + AIS_DataMapIteratorOfDataMapOfIOStatus; |
| 42 | + |
| 43 | +#endif // _AIS_DataMapOfIOStatus_hxx |
0 commit comments