ConnectEvent Class Reference

#include <Events.h>

Inherits ClientListEvent, and ClientListEvent.

Public Member Functions

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

Private Attributes

char * video

Detailed Description

Definition at line 154 of file Events.h.


Constructor & Destructor Documentation

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

Definition at line 165 of file Events.cpp.

00166     : ClientListEvent( ip, port, CONNECT_EVENT )
00167 {
00168     this->video = strdup( video );
00169 }

ConnectEvent::~ConnectEvent (  ) 

Definition at line 171 of file Events.cpp.

00172 {
00173     free( video );
00174 }

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

Definition at line 78 of file MonitorTable.cpp.

00079     : ClientListEvent( ip, port, CONNECT_EVENT )
00080 {
00081     this->video = strdup( video );
00082 }

ConnectEvent::~ConnectEvent (  ) 

Member Function Documentation

char* ConnectEvent::getVideo (  ) 
char * ConnectEvent::getVideo (  ) 

Definition at line 176 of file Events.cpp.

00177 {
00178     return video;
00179 }


Field Documentation

char * ConnectEvent::video [private]

Definition at line 156 of file Events.h.


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