Added comments

This commit is contained in:
arvind_your
2010-01-11 11:27:16 +00:00
parent 72978d9c6e
commit 87c3172d89
2 changed files with 17 additions and 1 deletions

View File

@@ -1,9 +1,17 @@
//---------------------------------------------------------------
// ExtendedMainForm: This class extends the mainForm class
// to support drag and drop of sql file.
//
// Developer: Arvind Kumar Gupta
// arvind.your@gmail.com
//---------------------------------------------------------------
#include "extendedmainform.h"
#include <QUrl>
ExtendedMainForm::ExtendedMainForm(QWidget* parent, const char* name, Qt::WindowFlags fl) : mainForm( parent, name, fl )
{
setAcceptDrops(true);
setAcceptDrops(true); // Enable the drop feature on this form
}
ExtendedMainForm::~ExtendedMainForm(void)

View File

@@ -1,3 +1,11 @@
//---------------------------------------------------------------
// ExtendedMainForm: This class extends the mainForm class
// to support drag and drop of sql file.
//
// Developer: Arvind Kumar Gupta
// arvind.your@gmail.com
//---------------------------------------------------------------
#ifndef __EXTENDEDMAINFORM__
#define __EXTENDEDMAINFORM__