29 lines
617 B
C
29 lines
617 B
C
/**
|
|
* 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
|
|
#include "../amqpcpp.h"
|
|
|
|
// classes that are very commonly used
|
|
#include "exception.h"
|
|
#include "protocolexception.h"
|
|
#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"
|
|
|
|
|
|
|