Salome HOME
PR: merge error (some *.h included twice)
[modules/yacs.git] / src / Plot2d / Plot2d.cxx
1 //  Copyright (C) 2003  CEA/DEN, EDF R&D
2 //
3 //
4 //
5 //  File   : Plot2d.cxx
6 //  Author : Nicolas REJNERI
7 //  Module : SALOME
8 //  $Header$
9
10 #include "Plot2d.h"
11 #include "Plot2d_ViewFrame.h"
12
13 QAD_ViewFrame* Plot2d::createView(QAD_RightFrame* parent)
14 {
15   return new Plot2d_ViewFrame( parent, "plotView" ); 
16 }
17
18 extern "C"
19 {
20   QAD_ViewFrame* createView(QAD_RightFrame* parent)
21   {
22     return Plot2d::createView(parent);
23   }
24 }