BipBip/MiniChat_userlist.h
2021-09-12 22:23:04 +02:00

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