#include <QDebug>
#define QDEBUG qWarning()
//#define QDEBUG qDebug()
-#define QLOG(data) QDEBUG << "[XSALOME] " << data
+#define QLOG(data) QDEBUG << __FILE__<<" ["<<__LINE__<<"] : " << data
#ifdef LOG
#undef LOG
#endif
#include "SALOME_StudyEditor.hxx"
+/*!
+ * This class is a specialization of the KERNEL StudyEditor for
+ * the GUI context. The concept of active study is introduced here
+ * while it does not exist in the pure KERNEL context.
+ */
class SALOME_AppStudyEditor: public SALOME_StudyEditor {
public:
SALOME_AppStudyEditor(SalomeApp_Application * salomeApp);