moved the #pragma once statement

This commit is contained in:
Emiel Bruijntjes 2015-11-01 10:48:13 +01:00
parent 54c2c27a73
commit 66ade94fc0
22 changed files with 110 additions and 22 deletions

View File

@ -1,10 +1,14 @@
#pragma once
/** /**
* AMQP field array * AMQP field array
* *
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* BooleanSet.h * BooleanSet.h
* *
@ -9,6 +8,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* ChannelImpl.h * ChannelImpl.h
* *
@ -9,6 +8,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* Classes.h * Classes.h
* *
@ -6,6 +5,11 @@
* *
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,10 +1,14 @@
#pragma once
/** /**
* Class describing a mid-level Amqp connection * Class describing a mid-level Amqp connection
* *
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* ConnectionHandler.h * ConnectionHandler.h
* *
@ -10,6 +9,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* Connection implementation * Connection implementation
* *
@ -9,6 +8,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,10 +1,14 @@
#pragma once
/** /**
* Decimal field type for AMQP * Decimal field type for AMQP
* *
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* EntityImpl.h * EntityImpl.h
* *
@ -7,6 +6,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Namespace * Namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* Envelope.h * Envelope.h
* *
@ -8,6 +7,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* ExchangeType.h * ExchangeType.h
* *
@ -7,6 +6,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,10 +1,14 @@
#pragma once
/** /**
* Available field types for AMQP * Available field types for AMQP
* *
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* Field proxy. Returned by the table. Can be casted to the * Field proxy. Returned by the table. Can be casted to the
* relevant native type (std::string or numeric) * relevant native type (std::string or numeric)
@ -6,6 +5,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* AmqpFlags.h * AmqpFlags.h
* *
@ -6,6 +5,11 @@
* *
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* The login information to access a server * The login information to access a server
* *
@ -7,6 +6,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* Message.h * Message.h
* *
@ -11,6 +10,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* MetaData.h * MetaData.h
* *
@ -8,6 +7,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,10 +1,14 @@
#pragma once
/** /**
* Numeric field types for AMQP * Numeric field types for AMQP
* *
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* OutBuffer.h * OutBuffer.h
* *
@ -8,6 +7,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,10 +1,14 @@
#pragma once
/** /**
* String field types for amqp * String field types for amqp
* *
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,10 +1,14 @@
#pragma once
/** /**
* AMQP field table * AMQP field table
* *
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */

View File

@ -1,4 +1,3 @@
#pragma once
/** /**
* Watchable.h * Watchable.h
* *
@ -8,6 +7,11 @@
* @copyright 2014 Copernica BV * @copyright 2014 Copernica BV
*/ */
/**
* Include guard
*/
#pragma once
/** /**
* Set up namespace * Set up namespace
*/ */