mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-29 14:00:49 +03:00
0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
FILES
|
||||
QANCollection.cdl
|
||||
QANCollection.cxx
|
||||
QANCollection_Test.cxx
|
||||
QANCollection_Perf.cxx
|
||||
QANCollection.hxx
|
||||
QANCollection_Alloc.cxx
|
||||
QANCollection_Stl.cxx
|
||||
QANCollection_Common.cxx
|
||||
QANCollection_Common.hxx
|
||||
QANCollection_ListOfPnt.hxx
|
||||
QANCollection_ListIteratorOfListOfPnt.hxx
|
||||
QANCollection_DataMapOfRealPnt.hxx
|
||||
QANCollection_DataMapIteratorOfDataMapOfRealPnt.hxx
|
||||
QANCollection_IndexedDataMapOfRealPnt.hxx
|
||||
QANCollection_DoubleMapOfRealInteger.hxx
|
||||
QANCollection_DataMapOfRealPnt.hxx
|
||||
QANCollection_DoubleMapIteratorOfDoubleMapOfRealInteger.hxx
|
||||
QANCollection_DoubleMapOfRealInteger.hxx
|
||||
QANCollection_IndexedDataMapOfRealPnt.hxx
|
||||
QANCollection_ListIteratorOfListOfPnt.hxx
|
||||
QANCollection_ListOfPnt.hxx
|
||||
QANCollection_Perf.cxx
|
||||
QANCollection_Stl.cxx
|
||||
QANCollection_Test.cxx
|
||||
|
@@ -1,39 +0,0 @@
|
||||
-- Created on: 2004-03-05
|
||||
-- Created by: Mikhail KUZMITCHEV
|
||||
-- Copyright (c) 2004-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.
|
||||
|
||||
package QANCollection
|
||||
|
||||
uses
|
||||
Draw,
|
||||
TCollection,
|
||||
TColStd,
|
||||
gp
|
||||
|
||||
is
|
||||
imported ListOfPnt;
|
||||
imported ListIteratorOfListOfPnt;
|
||||
imported DataMapOfRealPnt;
|
||||
imported DataMapIteratorOfDataMapOfRealPnt;
|
||||
imported IndexedDataMapOfRealPnt;
|
||||
imported DoubleMapOfRealInteger;
|
||||
imported DoubleMapIteratorOfDoubleMapOfRealInteger;
|
||||
|
||||
Commands(DI : in out Interpretor from Draw);
|
||||
CommandsTest(DI : in out Interpretor from Draw);
|
||||
CommandsPerf(DI : in out Interpretor from Draw);
|
||||
CommandsAlloc(DI : in out Interpretor from Draw);
|
||||
CommandsStl(DI : in out Interpretor from Draw);
|
||||
|
||||
end;
|
67
src/QANCollection/QANCollection.hxx
Normal file
67
src/QANCollection/QANCollection.hxx
Normal file
@@ -0,0 +1,67 @@
|
||||
// Created on: 2004-03-05
|
||||
// Created by: Mikhail KUZMITCHEV
|
||||
// Copyright (c) 2004-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 _QANCollection_HeaderFile
|
||||
#define _QANCollection_HeaderFile
|
||||
|
||||
#include <Standard.hxx>
|
||||
#include <Standard_DefineAlloc.hxx>
|
||||
#include <Standard_Handle.hxx>
|
||||
|
||||
#include <Draw_Interpretor.hxx>
|
||||
|
||||
|
||||
|
||||
class QANCollection
|
||||
{
|
||||
public:
|
||||
|
||||
DEFINE_STANDARD_ALLOC
|
||||
|
||||
|
||||
Standard_EXPORT static void Commands (Draw_Interpretor& DI);
|
||||
|
||||
Standard_EXPORT static void CommandsTest (Draw_Interpretor& DI);
|
||||
|
||||
Standard_EXPORT static void CommandsPerf (Draw_Interpretor& DI);
|
||||
|
||||
Standard_EXPORT static void CommandsAlloc (Draw_Interpretor& DI);
|
||||
|
||||
Standard_EXPORT static void CommandsStl (Draw_Interpretor& DI);
|
||||
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif // _QANCollection_HeaderFile
|
Reference in New Issue
Block a user