22 lines
291 B
C++
22 lines
291 B
C++
#include "cpTableWidget.h"
|
|
|
|
#include <QApplication>
|
|
#include <QDrag>
|
|
#include <QMimeData>
|
|
#include <QPainter>
|
|
|
|
CpTableWidget::CpTableWidget(QWidget* parent) : QTableWidget(parent)
|
|
{
|
|
}
|
|
|
|
CpTableWidget::~CpTableWidget()
|
|
{
|
|
}
|
|
|
|
void CpTableWidget::dragEnterEvent(QDragEnterEvent* event)
|
|
{
|
|
|
|
}
|
|
|
|
|