Salome HOME
NRI : Check if a component-username is already associated with a component-name.
[modules/kernel.git] / src / Plot2d / Plot2d.cxx
1 //  File      : Plot2d.cxx
2 //  Created   : Wed Mar 20 11:56:18 2002
3 //  Author    : Nicolas REJNERI
4 //  Project   : SALOME
5 //  Module    : OCCViewer
6 //  Copyright : Open CASCADE 2002
7 //  $Header$
8
9 #include "Plot2d.h"
10 #include "Plot2d_ViewFrame.h"
11
12 QAD_ViewFrame* Plot2d::createView(QAD_RightFrame* parent)
13 {
14   return new Plot2d_ViewFrame( parent, "plotView" ); 
15 }
16
17 extern "C"
18 {
19   QAD_ViewFrame* createView(QAD_RightFrame* parent)
20   {
21     return Plot2d::createView(parent);
22   }
23 }