blob: 6d04f7e8202bc5def712355241c78e15a5e204ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// File: Draw_Commands.cxx
// Created: Wed Mar 1 13:34:09 1995
// Author: Remi LEQUETTE
// <rle@bravox>
#include <Draw.ixx>
void Draw::Commands(Draw_Interpretor& theCommands)
{
Draw::BasicCommands(theCommands);
Draw::VariableCommands(theCommands);
Draw::GraphicCommands(theCommands);
Draw::PloadCommands(theCommands);
Draw::UnitCommands(theCommands);
}
|