2014-01-04 19:45:04 +08:00
|
|
|
/**
|
|
|
|
|
* Includes.h
|
|
|
|
|
*
|
|
|
|
|
* The includes that are necessary to compile the AMQP library
|
|
|
|
|
* This file also holds includes that may not be necessary for including the library
|
|
|
|
|
*
|
|
|
|
|
* @documentation private
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// include the generic amqp functions
|
2014-01-07 17:17:09 +08:00
|
|
|
#include "../amqpcpp.h"
|
2014-01-04 19:45:04 +08:00
|
|
|
|
|
|
|
|
// classes that are very commonly used
|
2014-01-06 01:50:41 +08:00
|
|
|
#include "exception.h"
|
|
|
|
|
#include "protocolexception.h"
|
2014-01-04 19:45:04 +08:00
|
|
|
#include "frame.h"
|
|
|
|
|
#include "extframe.h"
|
|
|
|
|
#include "methodframe.h"
|
|
|
|
|
#include "headerframe.h"
|
|
|
|
|
#include "connectionframe.h"
|
|
|
|
|
#include "channelframe.h"
|
|
|
|
|
#include "exchangeframe.h"
|
|
|
|
|
#include "queueframe.h"
|
|
|
|
|
#include "basicframe.h"
|
|
|
|
|
#include "transactionframe.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|