//--------------------------------------------------------------------------- #ifndef TransactionConfigH #define TransactionConfigH //--------------------------------------------------------------------------- #include #include #include #include #include "DataModule.h" #include #include #include #include #include #include #include #include using namespace std; //--------------------------------------------------------------------------- class TTxnConfig : public TForm { __published: // IDE-managed Components TADOQuery *MASSTxnQuery; TPanel *TitlePanel; TBitBtn *BitBtn1; TBitBtn *BitBtn2; TDataSource *MASSTxnDataSource; TLabel *Label1; TCheckListBox *TransactionList; TPanel *TestCasePanel; void __fastcall TransactionListClickCheck(TObject *Sender); private: // User declarations vector m_selected_txns; public: // User declarations __fastcall TTxnConfig(TComponent* Owner); bool ShowForm(const AnsiString& project_code, int iteration, const AnsiString &testcase_text); vector &getSelectedTxns(); }; //--------------------------------------------------------------------------- extern PACKAGE TTxnConfig *TxnConfig; //--------------------------------------------------------------------------- #endif