35 lines
329 B
C++
35 lines
329 B
C++
/**
|
|
* ExchangeType.h
|
|
*
|
|
* The various exchange types that are supported
|
|
*
|
|
* @copyright 2014 Copernica BV
|
|
*/
|
|
|
|
/**
|
|
* Include guard
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* Set up namespace
|
|
*/
|
|
namespace AMQP {
|
|
|
|
/**
|
|
* The class
|
|
*/
|
|
enum ExchangeType
|
|
{
|
|
fanout,
|
|
direct,
|
|
topic,
|
|
headers
|
|
};
|
|
|
|
/**
|
|
* End of namespace
|
|
*/
|
|
}
|
|
|