Update of /cvsroot/libaim/libaim/include
In directory sc8-pr-cvs1:/tmp/cvs-serv20381/include
Modified Files:
aimsession.h flap.h
Removed Files:
bool.h
Log Message:
Code cleanup. Getting rid of that silly bool.h file. Compiles with -Wall now. Doesn't use deprecated iostream.h stuff
anymore
Index: aimsession.h
===================================================================
RCS file: /cvsroot/libaim/libaim/include/aimsession.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** aimsession.h 17 Nov 2000 22:04:01 -0000 1.8
--- aimsession.h 25 Feb 2003 02:49:42 -0000 1.9
***************
*** 2,6 ****
#define AIMSESSION_H
! #include <list.h>
#include <string>
#include <arpa/inet.h>
--- 2,6 ----
#define AIMSESSION_H
! #include <list>
#include <string>
#include <arpa/inet.h>
***************
*** 8,12 ****
#include <aimlistener.h>
#include <defaultaimlistener.h>
- #include <bool.h>
#include <flap.h>
--- 8,11 ----
Index: flap.h
===================================================================
RCS file: /cvsroot/libaim/libaim/include/flap.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** flap.h 24 Jan 2003 23:35:35 -0000 1.10
--- flap.h 25 Feb 2003 02:49:42 -0000 1.11
***************
*** 19,23 ****
#include <stdexcept>
- #include <bool.h>
#include <bits.h>
--- 19,22 ----
***************
*** 43,55 ****
/**
! * This buffer is used to hold the data in the flap packet. The initial size
! * of this buffer is 2046 bytes
*/
! byte *dataBuffer;
/**
! * The maximum ammount that we can store in data buffer without overflowing it
*/
! int bufferCapacity;
/**
--- 42,54 ----
/**
! * The maximum ammount that we can store in data buffer without overflowing it
*/
! int bufferCapacity;
/**
! * This buffer is used to hold the data in the flap packet. The initial size
! * of this buffer is 2046 bytes
*/
! byte *dataBuffer;
/**
--- bool.h DELETED ---
|