#ifndef PMGRID_H
#define PMGRID_H
#include <wx/wx.h>
#include <wx/grid.h>
#include "tqsql.h"
class pmGridframe: public wxFrame
{ public:
pmGridframe( wxWindow * parent,
const wxChar *title,
Table theTable,
int xpos,
int ypos,
int width,
int height
);
~pmGridframe();
wxGrid *grid;
private:
DECLARE_EVENT_TABLE()
};
#endif