24 lines
852 B
C++
24 lines
852 B
C++
//---------------------------------------------------------------------------
|
|
#ifndef MiniChat_userlistH
|
|
#define MiniChat_userlistH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <checklst.hpp>
|
|
#include <CheckLst.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TMiniChatList : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TCheckListBox *UserList;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TMiniChatList(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TMiniChatList *MiniChatList;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|