//--------------------------------------------------------------------------- #ifndef sortieren_uH #define sortieren_uH //--------------------------------------------------------------------------- #include #include #include #include //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TListBox *lboxUnsortiert; TListBox *lboxSortiert; TButton *btnNeueZahlen; TButton *btnLoeschen; TButton *btnBubbleSort; TButton *btnSelectionSort; TButton *btnInsertionSort; TButton *btnQuickSort; TButton *btnBubbleSort_opt; TLabel *Label1; TLabel *Label2; TEdit *edtN; TEdit *edtBubbleSort; TEdit *edtBubbleSort_opt; TEdit *edtInsertionSort; TEdit *edtSelectionSort; TEdit *edtQuickSort; void __fastcall btnLoeschenClick(TObject *Sender); void __fastcall btnNeueZahlenClick(TObject *Sender); void __fastcall btnBubbleSortClick(TObject *Sender); void __fastcall btnSelectionSortClick(TObject *Sender); void __fastcall btnInsertionSortClick(TObject *Sender); private: // User declarations public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif