29 lines
600 B
C++
29 lines
600 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 "../libamqp.h"
|
|
|
|
// classes that are very commonly used
|
|
#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"
|
|
|
|
// for debugging
|
|
#include <iostream>
|
|
|
|
|