summaryrefslogtreecommitdiff
path: root/includes/audiomanagertypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/audiomanagertypes.h')
-rw-r--r--includes/audiomanagertypes.h248
1 files changed, 78 insertions, 170 deletions
diff --git a/includes/audiomanagertypes.h b/includes/audiomanagertypes.h
index f1bd542..2d9b883 100644
--- a/includes/audiomanagertypes.h
+++ b/includes/audiomanagertypes.h
@@ -1,29 +1,24 @@
-/**
-* Copyright (C) 2011, BMW AG
-*
-* GeniviAudioMananger
-*
-* \file
-*
-* \date 20-Oct-2011 3:42:04 PM
-* \author Christian Mueller (christian.ei.mueller@bmw.de)
-*
-* \section License
-* GNU Lesser General Public License, version 2.1, with special exception (GENIVI clause)
-* Copyright (C) 2011, BMW AG Christian Mueller Christian.ei.mueller@bmw.de
-*
-* This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License, version 2.1, as published by the Free Software Foundation.
-* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License, version 2.1, for more details.
-* You should have received a copy of the GNU Lesser General Public License, version 2.1, along with this program; if not, see <http://www.gnu.org/licenses/lgpl-2.1.html>.
-* Note that the copyright holders assume that the GNU Lesser General Public License, version 2.1, may also be applicable to programs even in cases in which the program is not a library in the technical sense.
-* Linking AudioManager statically or dynamically with other modules is making a combined work based on AudioManager. You may license such other modules under the GNU Lesser General Public License, version 2.1. If you do not want to license your linked modules under the GNU Lesser General Public License, version 2.1, you may use the program under the following exception.
-* As a special exception, the copyright holders of AudioManager give you permission to combine AudioManager with software programs or libraries that are released under any license unless such a combination is not permitted by the license of such a software program or library. You may copy and distribute such a system following the terms of the GNU Lesser General Public License, version 2.1, including this special exception, for AudioManager and the licenses of the other code concerned.
-* Note that people who make modified versions of AudioManager are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. The GNU Lesser General Public License, version 2.1, gives permission to release a modified version without this exception; this exception also makes it possible to release a modified version which carries forward this exception.
-*
-* THIS CODE HAS BEEN GENERATED BY ENTERPRISE ARCHITECT GENIVI MODEL. PLEASE CHANGE ONLY IN ENTERPRISE ARCHITECT AND GENERATE AGAIN
-*/
-#if !defined(EA_6D2D8AED_B7CC_424e_8C3F_EB10C5EBDC21__INCLUDED_)
-#define EA_6D2D8AED_B7CC_424e_8C3F_EB10C5EBDC21__INCLUDED_
+/** Copyright (c) 2012 GENIVI Alliance
+ * Copyright (c) 2012 BMW
+ *
+ * @author Christian Mueller, BMW
+ *
+ * @copyright
+ * {
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction,
+ * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
+ * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ * }
+ *
+ *
+ * THIS CODE HAS BEEN GENERATED BY ENTERPRISE ARCHITECT GENIVI MODEL. PLEASE CHANGE ONLY IN ENTERPRISE ARCHITECT AND GENERATE AGAIN
+ */
+#if !defined(EA_5B7FFAAE_6D10_4b76_8E0F_E8060678C777__INCLUDED_)
+#define EA_5B7FFAAE_6D10_4b76_8E0F_E8060678C777__INCLUDED_
#include <stdint.h>
#include "projecttypes.h"
@@ -34,152 +29,65 @@
namespace am {
/**
- * This is the domain type. Each domain has a unique identifier.
- *
- * \mainpage
- * Copyright Copyright (C) 2011,2012 BMW AG
- *
- * \date 21.2.2012
- *
- * \author Christian Mueller (christian.ei.mueller@bmw.de)
- *
- * \par About AudioManagerInterfaces
- * The AudioManager is a Deamon that manages all Audio Connections in a GENIVI headunit.
- * It is a managing instance that uses so called RoutingAdaptors to control AudioDomains that then do the "real" connections.
- *
- * \par More information
- * can be found at https://collab.genivi.org/wiki/display/genivi/GENIVI+Home \n \n \n \n
- *
- * \section architecture Architecture Overview
- *
- * The architecture concept bases on the partition of management (logic) and routing (action). Sinks and sources are clustered into independent parts which are capable of exchanging audio with each other (AudioDomains). Between these AudioDomains, Audio can be interchanged via Gateways. \n
- * Since the routing and the management shall be independent from the actual used system, it is realized as an OwnedComponent, the AudioManager. Each AudioDomain has a Routing Adapter which implements some necessary logic and is the interface between the AudioManager and the AudioDomains.
- *
- * \section domains Audio Domains
- *
- * An Audio Domain consists of sinks and sources that can exchange audio with each other. To make the most out of the concept, AudioDomains shall be chosen in such a way that they are implemented by already existing audio routing engines.
- *
- * The AudioManager assumes that there are no restrictions in interconnection of sinks and sources. One or more sources can be connected to one sink and one or more sinks can be connected to one source. Since real hardware or software might end up in having restrictions, the knowledge of this must exist in the AudioManager and handled by him accordingly. This shall be accomplished via a plug-in mechanism. An AudioDomain is not tied to a hardware or software implementation. It can be software or hardware or even a combination of both. \n
- *
- * Examples for possible audio domains:\n
- * PulseAudio, Alsa, Jack, DSP, FPGA, MOST, In-chip switching matrix\n
- *
- * The clustering and usage of the AudioDomains will vary from each product. Care must be taken while choosing the right AudioDomains in regards to system load (due to resampling), latency and of course flexibility.\n
- * In special implementations of the AudioDomain, it is capable of operation a certain time without interaction to the AudioManager. This is needed to fulfill the requirements for Early & Late Audio, more information can be found below.
- *
- * \section routing_adaptor Routing Adapter
- *
- * Via this adapter, the interconnection from the AudioManager to the AudioDomains is accomplished. An AudioDomain shall have exactly one RoutingAdapter. In the terms of GENIVI, a RoutingAdapter is an AbstractComponent, this means that we define an API and a certain behavior in UML models but do not maintain components itself. Existing implementations from Proof of Concepts are shipped as example Adapters "as is" but cannot be seen as maintained components.\n
- * The implementation of a routing adapter can and will vary from each project to another since the combination of sinks and sources, the used hardware etc has influence on the adapters. Besides interchanging and abstracting information between the AudioManager and the sinks and sources, the Adapters also need to implement some business logic in order to interact with the AudioManager. This includes for example the registering of components, managing the current state, error handling etc.\n
- * In the special case of an EarlyDomain, the routing adapter also has to manage start-up and rundown including persistence for his domain while the AudioManager is not started or already stopped. During this periods of time, these special adapters have to be able to fulfill basic tasks like changing volumes, for example (this implies that the Adapter is implemented on a different piece of hardware, e.g. vehicle processor).
- *
- * \section Gateway
- *
- * Gateways are used to let audio flow between two domains. They always have a direction and can only transport one stream at a time. Several gateways connecting the same domains together can exist in parallel so that more than one source can be connected to more than one sink from the same domains at the same time.\n
- * The representation of a Gateway in the domain which originates the audio is a sink. In the receiving domain, the gateway appears as a source. The AudioManager knows about the Gateways, in terms of connection, it handles it as simple sources and sinks.
- *
- * \section AudioManagerDaemon
- *
- * The AudioManager is the central managing instance of the Audio architecture. It is designed as an OwnedComponent, this means that the software is maintained within GENIVI as open source component. The AudioManager consists of 4 central components.\n
- *
- * GOwnedComponent: AudioManager Daemon\n
- *
- * This component is owned and maintained by Genivi. It is the central audio framework component. There can be only one daemon in a system (singleton).
- *
- * \subsection controlinterface Control Interface Plugin
- *
- * This describes the interface towards the Controlling Instances of the AudioManagerDaemon. This is the HMI and interrupt sources that use this interface to start their interrupt and stop it again. The interface shall be asynchronous. Via this interface all user interactions are handled.
- *
- * \subsection routinginterface Routing Interface Plugin
- *
- * This interface is used by the AudioManager to control the RoutingAdapters and communicate with them. The communication is based on two interfaces, one is provided by the AudioManager for communication from the adapters towards the AudioManager and one for the opposite direction. The design of the AudioManager shall be done in such a way that several Interfaces are supported at the same time via a plug-in mechanism. The plug-ins are (either statically - due to performance reasons or dynamically) loaded at start-up. Due to this architecture, the number of buses and routing adapters that are supported are as low as possible for each system and as high as needed without the need of changing the AudioManager itself. The AudioManager expects a bus-like structure behind each plug-in, so that a plug-in can implement a bus interface and proxy the messages to the routing adapters - the AudioManager will be capable of addressing more than one adapter one each plug-in. The interface shall is asynchronous for all timely critical commands.
- *
- * \section interfaces Interfaces
- * the calls to the interfaces of the AudioManagerDaemon are generally not threadsafe !
- * Nevertheless if such calls from a different thread-context are needed, you may use the defered-call pattern that utilizes the mainloop (Sockethandler) to get self called in the next loop of the mainloop. For more infomation please check the audiomanger wiki page.
- *
- * \section deferred The deferred call pattern
- * Create a unix pipe or socket and add the file descriptor to the Sockethandler. Whenever a call needs to be deferred you can store the necessary information protected by a mutex in a queue and write to the socket or pipe. This will lead to a callback in the next loop of the mainloop - when getting called by the callback that was registered at the Sockethandler execute your call with the information stored away.
- *
- *
- * \section sources_sinks Sources & Sinks
- * \subsection Visibility
- * Sources and sinks can either be visible or not. If they are visible, the HMI is informed about their existence and can use them. \n
- * Invisible Sources and Sinks either are system only relevant (e.g. an audio processing that has a source and a sink) or belong to a gateway.
- *
- * \subsection Availability
- * It can be the case, that sources and sinks are present in the system but cannot be used at the moment. This is indicated via the availability. A sample use-case for this feature is CD drive that shall only be available if a CD is inserted.
- *
- * \section Interrupts
- * \subsection llinterrupts Low level interrupts
- * \todo write low level Interrupts description
- *
- * \subsection Interrupts
- * \todo write Interrupts description
- *
- * \section Persistency
- * It is the job of the AudioManagerController to handle the persistency. It is planned to expose an interface via the ControlInterface to accomplish this but the GENIVI persistance is not ready yet. \n
- *
- *
- * \section speed Speed dependent volume
- * The adjustments for the speed are done product specific in the controller. The speed information itself is retrieved by the AudioManagerDaemon, sampled and quantified and forwarded to the controller.\n
- * Turning speed controlled volume on/off and possible settings are achieved via SinkSoundProperty settings.
- *
- * \section Lipsync
- * It is the job of the AudioManager to retrieve all latency timing information from each connection, to aggregate this information and provide a latency information on a per MainConnection Basis. It is not the task of the AudioManager to actually delay or speed up video or audio signals to achieve a lipsync. The actual correction shall be done in the videoplayer with the information provided by the AudioManager.
- * The time information is always reported by the routingadaptors for each connection. Delays that are introduced in a sink or a gateway are counting for the connection that connects to this sink or gateway.\n
- * After the buildup of a connection the first timing information needs to be sent within 5 seconds, the timing information from the routing adaptors need to be sent via 4 seconds. If the latency for a connection is variable and changes over lifetime of the connection, the routing adaptors shall resend the value and the audiomanger will correct the over all latency.\n
- * @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * a domain ID
+ * @author Christian Mueller
+ * @created 27-Feb-2012 6:57:27 PM
*/
typedef uint16_t am_domainID_t;
/**
+ * a source ID
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:27 PM
*/
typedef uint16_t am_sourceID_t;
/**
+ * a sink ID
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:27 PM
*/
typedef uint16_t am_sinkID_t;
/**
+ * a gateway ID
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:27 PM
*/
typedef uint16_t am_gatewayID_t;
/**
+ * a crossfader ID
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef uint16_t am_crossfaderID_t;
/**
+ * a connection ID
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef uint16_t am_connectionID_t;
/**
+ * a mainConnection ID
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef uint16_t am_mainConnectionID_t;
/**
+ * speed
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef uint16_t am_speed_t;
/**
* The unit is 0.1 db steps,The smallest value -3000 (=AM_MUTE). The minimum and maximum can be limited by actual project.
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef int16_t am_volume_t;
@@ -187,40 +95,40 @@ namespace am {
* This is the volume presented on the command interface. It is in the duty of the Controller to change the volumes given here into meaningful values on the routing interface.
* The range of this type is customer specific.
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef int16_t am_mainVolume_t;
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef uint16_t am_sourceClass_t;
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef uint16_t am_sinkClass_t;
/**
* time in ms!
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef uint16_t am_time_t;
/**
* offset time that is introduced in milli seconds.
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
typedef int16_t am_timeSync_t;
/**
* with the help of this enum, sinks and sources can report their availability state
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_Availablility_e
{
@@ -242,7 +150,7 @@ namespace am {
/**
* represents the connection state
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_ConnectionState_e
{
@@ -272,7 +180,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_DomainState_e
{
@@ -298,7 +206,7 @@ namespace am {
/**
* This enum characterizes the data of the EarlyData_t
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_EarlyDataType_e
{
@@ -328,7 +236,7 @@ namespace am {
/**
* the errors of the audiomanager. All possible errors are in here. This enum is used widely as return parameter.
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_Error_e
{
@@ -381,7 +289,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_MuteState_e
{
@@ -403,7 +311,7 @@ namespace am {
/**
* The source state reflects the state of the source
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_SourceState_e
{
@@ -426,7 +334,7 @@ namespace am {
/**
* This enumeration is used to define the type of the action that is correlated to a handle.
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_Handle_e
{
@@ -446,7 +354,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:31 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_InterruptState_e
{
@@ -468,7 +376,7 @@ namespace am {
/**
* describes the active sink of a crossfader.
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:32 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
enum am_HotSink_e
{
@@ -494,7 +402,7 @@ namespace am {
/**
* this describes the availability of a sink or a source together with the latest change
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:32 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
struct am_Availability_s
{
@@ -513,7 +421,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:32 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
struct am_ClassProperty_s
{
@@ -526,7 +434,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:32 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
struct am_Crossfader_s
{
@@ -543,7 +451,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:32 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
struct am_Gateway_s
{
@@ -583,7 +491,7 @@ namespace am {
/**
* This represents one "hopp" in a route
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:32 PM
+ * @created 27-Feb-2012 6:57:28 PM
*/
struct am_RoutingElement_s
{
@@ -598,7 +506,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:32 PM
+ * @created 27-Feb-2012 6:57:29 PM
*/
struct am_Route_s
{
@@ -612,7 +520,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:32 PM
+ * @created 27-Feb-2012 6:57:29 PM
*/
struct am_SoundProperty_s
{
@@ -625,7 +533,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:33 PM
+ * @created 27-Feb-2012 6:57:29 PM
*/
struct am_SystemProperty_s
{
@@ -644,7 +552,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:33 PM
+ * @created 27-Feb-2012 6:57:29 PM
*/
struct am_SinkClass_s
{
@@ -658,7 +566,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:33 PM
+ * @created 27-Feb-2012 6:57:29 PM
*/
struct am_SourceClass_s
{
@@ -676,7 +584,7 @@ namespace am {
/**
* this type holds all information of sources relevant to the HMI
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:33 PM
+ * @created 27-Feb-2012 6:57:29 PM
*/
struct am_SourceType_s
{
@@ -692,7 +600,7 @@ namespace am {
/**
* this type holds all information of sinks relevant to the HMI
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:33 PM
+ * @created 27-Feb-2012 6:57:29 PM
*/
struct am_SinkType_s
{
@@ -709,7 +617,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:33 PM
+ * @created 27-Feb-2012 6:57:29 PM
*/
struct am_Handle_s
{
@@ -722,7 +630,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:34 PM
+ * @created 27-Feb-2012 6:57:30 PM
*/
struct am_MainSoundProperty_s
{
@@ -736,7 +644,7 @@ namespace am {
/**
* this type holds all information of connections relevant to the HMI
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:34 PM
+ * @created 27-Feb-2012 6:57:30 PM
*/
struct am_MainConnectionType_s
{
@@ -752,7 +660,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:34 PM
+ * @created 27-Feb-2012 6:57:30 PM
*/
struct am_MainConnection_s
{
@@ -775,7 +683,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:34 PM
+ * @created 27-Feb-2012 6:57:30 PM
*/
struct am_Sink_s
{
@@ -798,7 +706,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:34 PM
+ * @created 27-Feb-2012 6:57:30 PM
*/
struct am_Source_s
{
@@ -830,7 +738,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:34 PM
+ * @created 27-Feb-2012 6:57:30 PM
*/
struct am_Domain_s
{
@@ -848,7 +756,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:34 PM
+ * @created 27-Feb-2012 6:57:31 PM
*/
struct am_Connection_s
{
@@ -867,7 +775,7 @@ namespace am {
* volume_t in case of ED_SOURCE_VOLUME, ED_SINK_VOLUME
* soundProperty_t in case of ED_SOURCE_PROPERTY, ED_SINK_PROPERTY
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:35 PM
+ * @created 27-Feb-2012 6:57:31 PM
*/
union am_EarlyData_u
{
@@ -883,7 +791,7 @@ namespace am {
* sourceID in case of ED_SOURCE_VOLUME, ED_SOURCE_PROPERTY
* sinkID in case of ED_SINK_VOLUME, ED_SINK_PROPERTY
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:35 PM
+ * @created 27-Feb-2012 6:57:31 PM
*/
union am_DataType_u
{
@@ -896,7 +804,7 @@ namespace am {
/**
* @author Christian Mueller
- * @created 21-Feb-2012 4:58:35 PM
+ * @created 27-Feb-2012 6:57:31 PM
*/
struct am_EarlyData_s
{
@@ -908,4 +816,4 @@ namespace am {
};
}
-#endif // !defined(EA_6D2D8AED_B7CC_424e_8C3F_EB10C5EBDC21__INCLUDED_)
+#endif // !defined(EA_5B7FFAAE_6D10_4b76_8E0F_E8060678C777__INCLUDED_)