-
Notifications
You must be signed in to change notification settings - Fork 0
/
wxMsListsh.h
37 lines (34 loc) · 1.02 KB
/
wxMsListsh.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*-----------------------------------------------------------------
* Name: wxMsListsh.h
* Purpose:
* Author: A. Wiegert
*
* Copyright:
* Licence: wxWindows licence
*-------------------------------------------------------------- */
#ifndef _WX_MS_MSG_LIST_H
#define _WX_MS_MSG_LIST_H
// ------------------------------------------------------------------
#include <wx/list.h>
// -------------------------------------------------------------
/**
* list of messages on the server
*/
class MyMsgListElement
{
public:
unsigned int m_uiNmbr;
unsigned int m_uiLen; // in octets
wxString m_wsMsg;
wxString m_wsUID;
MyMsgListElement( unsigned int uiNo, unsigned int uiLen,
wxString wsUID, wxString wsMsg ) {
m_uiNmbr = uiNo;
m_uiLen = uiLen;
m_wsUID = wsUID;
m_wsMsg = wsMsg; };
};
WX_DECLARE_LIST(MyMsgListElement, MyMsgsList );
#include <wx/listimpl.cpp>
#endif // _WX_MS_MSG_LIST_H
// ------------------------------- eof ---------------------------