X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPVGUI%2FPARAVIS_Gen_i.cc;h=a340c019b2f88c71e3d217934b971052db94c2ff;hb=fe837bd5f2aae9a93c8986af24a84520551b2995;hp=e31a4f5202d68b144cbcb22d4269c1ea29d15d28;hpb=89c33033151baa33eeac8fb09d9c0488acb43c35;p=modules%2Fparavis.git diff --git a/src/PVGUI/PARAVIS_Gen_i.cc b/src/PVGUI/PARAVIS_Gen_i.cc index e31a4f52..a340c019 100644 --- a/src/PVGUI/PARAVIS_Gen_i.cc +++ b/src/PVGUI/PARAVIS_Gen_i.cc @@ -1,9 +1,9 @@ -// Copyright (C) 2010-2012 CEA/DEN, EDF R&D +// Copyright (C) 2010-2014 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. +// 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 @@ -23,6 +23,7 @@ #include "PARAVIS_Gen_i.hh" +#include "PARAVIS_version.h" // IDL Headers #include @@ -47,7 +48,10 @@ #include "QDir" #include "QTextStream" -#include "vtkWrapIDL.h" +#ifdef PARAVIS_WITH_FULL_CORBA + // List of VTK classes wrapped into IDL: +# include "vtkWrapIDL.h" +#endif #include #include @@ -592,6 +596,7 @@ namespace PARAVIS return SALOMEDS::SObject::_nil(); } +#ifdef PARAVIS_WITH_FULL_CORBA //---------------------------------------------------------------------------- PARAVIS::string_array* PARAVIS_Gen_i::GetClassesList() { @@ -610,6 +615,7 @@ namespace PARAVIS PARAVIS::PARAVIS_Base_i* aClass = CreateInstance(NULL, QString(theClassName)); return aClass->_this(); } +#endif //---------------------------------------------------------------------------- void PARAVIS_Gen_i::GetConnectionParameters(CORBA::Long& theId, @@ -725,4 +731,13 @@ namespace PARAVIS return SALOMEDS::Study::_duplicate(myStudyDocument); } + // Version information + char* PARAVIS_Gen_i::getVersion() + { +#ifdef PARAVIS_DEVELOPMENT + return CORBA::string_dup( PARAVIS_VERSION_STR"dev" ); +#else + return CORBA::string_dup( PARAVIS_VERSION_STR ); +#endif + } }