1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#ifndef _MYSQL_VIEW_EDITOR_H_
#define _MYSQL_VIEW_EDITOR_H_
#include "grtdb/editor_view.h"
#include "grts/structs.workbench.physical.h"
#include "grts/structs.db.mysql.h"
#include "grt/grt_manager.h"
#include "mysql_support_backend_public_interface.h"
class MYSQLWBMYSQLSUPPORTBACKEND_PUBLIC_FUNC MySQLViewEditorBE : public bec::ViewEditorBE
{
public:
MySQLViewEditorBE(bec::GRTManager *grtm, const db_ViewRef &view, const db_mgmt_RdbmsRef &rdbms);
};
#endif /* _MYSQL_VIEW_EDITOR_H_ */
|