summaryrefslogtreecommitdiff
path: root/src/V2d/V2d_BackgroundGraphicObject.cxx
blob: 9e22fcc010324e88e628ec4c65d4808c8cde5a88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#define PRO9581	//GG_270298
//		Creer la grille dans un objet graphique a l'altitude 0
//		de facon a etre tracee en premier.

#include <V2d_BackgroundGraphicObject.ixx>

#define BASE_PRIORITY 0
#define MAX_PRIORITY 0 

V2d_BackgroundGraphicObject::V2d_BackgroundGraphicObject
       (const Handle(Graphic2d_View)& aView) : Graphic2d_GraphicObject(aView) {
}

Standard_Integer V2d_BackgroundGraphicObject::BasePriority () const {

	return BASE_PRIORITY;

}

Standard_Integer V2d_BackgroundGraphicObject::MaxPriority () const {

	return MAX_PRIORITY;

}