DisconnectEvent Class Reference

#include <Events.h>

Inherits ClientListEvent, and ClientListEvent.

Public Member Functions

 DisconnectEvent (char *ip, int port, char *video)
 ~DisconnectEvent ()
char * getVideo ()
 DisconnectEvent (char *ip, unsigned short port, char *video)
 ~DisconnectEvent ()
char * getVideo ()

Private Attributes

char * video

Detailed Description

Definition at line 171 of file Events.h.


Constructor & Destructor Documentation

DisconnectEvent::DisconnectEvent ( char *  ip,
int  port,
char *  video 
)

Definition at line 194 of file Events.cpp.

00195     : ClientListEvent( ip, port, DISCONNECT_EVENT )
00196 {
00197     this->video = strdup( video );
00198 }

DisconnectEvent::~DisconnectEvent (  ) 

Definition at line 200 of file Events.cpp.

00201 {
00202     free( video );
00203 }

DisconnectEvent::DisconnectEvent ( char *  ip,
unsigned short  port,
char *  video 
)

Definition at line 107 of file MonitorTable.cpp.

00108     : ClientListEvent( ip, port, DISCONNECT_EVENT )
00109 {
00110     this->video = strdup( video );
00111 }

DisconnectEvent::~DisconnectEvent (  ) 

Member Function Documentation

char* DisconnectEvent::getVideo (  ) 
char * DisconnectEvent::getVideo (  ) 

Definition at line 205 of file Events.cpp.

00206 {
00207     return video;
00208 }


Field Documentation

char * DisconnectEvent::video [private]

Definition at line 173 of file Events.h.


The documentation for this class was generated from the following files:
Generated on Wed Jul 4 16:03:34 2012 for RIO by  doxygen 1.6.3