14 lines
254 B
C++
14 lines
254 B
C++
#pragma once
|
|
|
|
#include <QItemEditorFactory>
|
|
#include "dbguilib_global.h"
|
|
|
|
// Example usage:
|
|
// QItemEditorFactory::setDefaultFactory(new EditorFactory());
|
|
|
|
class DBGUILIB_EXPORT EditorFactory : public QItemEditorFactory
|
|
{
|
|
public:
|
|
EditorFactory();
|
|
};
|