]> SALOME platform Git repositories - modules/yacs.git/commitdiff
Salome HOME
Merge master branch into V9_dev
authorrnv <rnv@opencascade.com>
Fri, 18 Aug 2017 15:29:09 +0000 (18:29 +0300)
committerrnv <rnv@opencascade.com>
Fri, 18 Aug 2017 15:29:09 +0000 (18:29 +0300)
1  2 
src/evalyfx/YACSEvalYFXPattern.cxx
src/py2yacs/py2yacs.cxx
src/py2yacsgui/CMakeLists.txt
src/py2yacsgui/py2yacsgui.cxx
src/py2yacsgui/py2yacsgui_rich.cxx

Simple merge
Simple merge
Simple merge
index 4d9ae26e393aaf3939fe6ded61357c2925fd6f1f,c1f40633ff6f3f3fb4b1ab4c750a3a400a34c144..90f6f27e21e2f3720e2fc6224006ce51bc9b89e3
  //
  // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
  //
- #include "Py2YacsDialog.hxx"
++
 +#include "RuntimeSALOME.hxx"
+ #include "Py2YacsDialog_raw.hxx"
  #include <QApplication>
 -#include "RuntimeSALOME.hxx"
  #include "Proc.hxx"
  
  #include <iostream>
index 0000000000000000000000000000000000000000,f31011c5b8124abf47279d864670ee0a097f34cc..6f1bf932a11eaf88ac2b52bdca39e9f7f43f0152
mode 000000,100644..100644
--- /dev/null
@@@ -1,0 -1,44 +1,44 @@@
 -#include "RuntimeSALOME.hxx"
+ // Copyright (C) 2016-2017  CEA/DEN, EDF R&D
+ //
+ // This library is free software; you can redistribute it and/or
+ // modify it under the terms of the GNU Lesser General Public
+ // License as published by the Free Software Foundation; either
+ // version 2.1 of the License, or (at your option) any later version.
+ //
+ // This library is distributed in the hope that it will be useful,
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ // Lesser General Public License for more details.
+ //
+ // You should have received a copy of the GNU Lesser General Public
+ // License along with this library; if not, write to the Free Software
+ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+ //
+ // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+ //
++#include "RuntimeSALOME.hxx"
+ #include "Py2YacsDialog.hxx"
+ #include <QApplication>
+ #include "Proc.hxx"
+ #include <PyEditor_StdSettings.h>
+ #include <iostream>
+ int main(int argc, char *argv[])
+ {
+   QApplication app(argc,argv);
+   app.setOrganizationName( "salome" );
+   app.setOrganizationDomain( "www.salome-platform.org" );
+   app.setApplicationName( "py2yacs" );
+   YACS::ENGINE::RuntimeSALOME::setRuntime();
+   Py2YacsDialog mygui;
+   if(mygui.exec())
+   {
+     std::cout << "Accepted:" << mygui.getYacsFile().toStdString() << std::endl;
+   }
+   else
+   {
+     std::cout << "Not accepted" << std::endl;
+   }
+   return 0;
+ }