changed structs to classes. there should be no more structs now.

This commit is contained in:
crs 2002-05-23 14:04:35 +00:00
parent 6697bd900e
commit 6611ea871e
2 changed files with 4 additions and 3 deletions

View File

@ -38,7 +38,8 @@ public:
typedef struct sockaddr Address;
typedef int AddressLength;
typedef BOOL TCPNoDelayType;
struct PollEntry {
class PollEntry {
public:
Socket fd;
short events;
short revents;

View File

@ -105,12 +105,12 @@ protected:
virtual long getEventMask(Window) const = 0;
private:
struct CPropertyNotifyInfo {
class CPropertyNotifyInfo {
public:
Window m_window;
Atom m_property;
};
struct CClipboardRequest {
class CClipboardRequest {
public:
CString m_data;
UInt32 m_sent;