As a test implementation, this allows the TablesPage to open a CrudTab for a table/view without the need for TablesPage, CrudTab and DatabaseWindow to know anything about each other.
10 lines
221 B
C++
10 lines
221 B
C++
#ifndef MODULEACTIONPARAMETERS_H
|
|
#define MODULEACTIONPARAMETERS_H
|
|
|
|
#include <map>
|
|
#include <QString>
|
|
#include <QVariant>
|
|
|
|
using ModuleActionParameters = std::map<QString, QVariant>;
|
|
|
|
#endif // MODULEACTIONPARAMETERS_H
|