Salome HOME
no message
authorstv <stv@opencascade.com>
Thu, 2 Jun 2005 08:30:52 +0000 (08:30 +0000)
committerstv <stv@opencascade.com>
Thu, 2 Jun 2005 08:30:52 +0000 (08:30 +0000)
src/SUIT/SUIT_Application.cxx
src/SUIT/SUIT_Application.h

index 22e16df1d4f9341b070aeb784808093bff75e75f..0d329e8d7b3c21b272a6558ef7306fc539b23452 100755 (executable)
@@ -43,6 +43,11 @@ SUIT_Study* SUIT_Application::activeStudy() const
   return myStudy;
 }
 
+QString SUIT_Application::applicationVersion() const
+{
+  return QString::null;
+}
+
 void SUIT_Application::start()
 {
   if ( desktop() )
index bcf33bae3e4f55f4ac7290d76cff451dc717b933..2a3fb0c96cd2cc13b5ccb310d871dfd87acfc19c 100755 (executable)
@@ -45,6 +45,8 @@ public:
   //! Returns Name of application. Using is not defined.
   virtual QString       applicationName() const = 0;
 
+  virtual QString       applicationVersion() const;
+
   //! Shows the application's main widget. For non GUI application must be redefined.
   virtual void          start();