1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-29 14:00:49 +03:00

0023030: Collect all DRAW commands created for testing bugs into one package

QA* packages have been collected in one QABugs package.
This commit is contained in:
dbv
2012-03-26 15:59:41 +04:00
parent 0003c4b287
commit 1cd84fee09
57 changed files with 184 additions and 810 deletions

45
src/QABugs/QABugs.cxx Normal file
View File

@@ -0,0 +1,45 @@
// Created on: 2012-03-23
// Created by: DBV
// Copyright (c) 2002-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
#include <QABugs.hxx>
void QABugs::Commands(Draw_Interpretor& theCommands) {
QABugs::Commands_1(theCommands);
QABugs::Commands_2(theCommands);
QABugs::Commands_3(theCommands);
QABugs::Commands_4(theCommands);
QABugs::Commands_5(theCommands);
QABugs::Commands_6(theCommands);
QABugs::Commands_7(theCommands);
QABugs::Commands_8(theCommands);
QABugs::Commands_9(theCommands);
QABugs::Commands_10(theCommands);
QABugs::Commands_11(theCommands);
QABugs::Commands_12(theCommands);
QABugs::Commands_13(theCommands);
QABugs::Commands_14(theCommands);
QABugs::Commands_15(theCommands);
QABugs::Commands_16(theCommands);
QABugs::Commands_17(theCommands);
QABugs::Commands_18(theCommands);
QABugs::Commands_19(theCommands);
return;
}