Subversion Repositories DevTools

Rev

Rev 2263 | Blame | Compare with Previous | Last modification | View Log | RSS feed

//---------------------------------------------------------------------------

#ifndef TransactionConfigH
#define TransactionConfigH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "DataModule.h"
#include <ADODB.hpp>
#include <DB.hpp>
#include <ExtCtrls.hpp>
#include <Buttons.hpp>
#include <DBCtrls.hpp>
#include <Mask.hpp>
#include <CheckLst.hpp>

#include <vector>
using namespace std;

//---------------------------------------------------------------------------
class TTxnConfig : public TForm
{
__published:    // IDE-managed Components
        TADOQuery *MASSTxnQuery;
        TPanel *TitlePanel;
        TBitBtn *BitBtn1;
        TBitBtn *BitBtn2;
        TLabel *Label1;
        TCheckListBox *TransactionList;
        TPanel *TestCasePanel;
        void __fastcall TransactionListClickCheck(TObject *Sender);

private:        // User declarations
    vector<unsigned int>        m_selected_txns;

public:         // User declarations
        __fastcall TTxnConfig(TComponent* Owner);
    bool ShowForm(const AnsiString& project_code, int iteration, const AnsiString &testcase_text);

    vector<unsigned int> &getSelectedTxns();    
};
//---------------------------------------------------------------------------
extern PACKAGE TTxnConfig *TxnConfig;
//---------------------------------------------------------------------------
#endif