2019-07-11 15:23:39 +00:00
|
|
|
/* Copyright (c) 2016-2019 ARM Limited
|
2018-11-09 12:12:06 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-09-29 09:38:02 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
#ifndef MBED_EVENTS_H
|
|
|
|
#define MBED_EVENTS_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
2016-10-01 07:11:36 +00:00
|
|
|
#include "events/EventQueue.h"
|
|
|
|
#include "events/Event.h"
|
2016-09-29 09:38:02 +00:00
|
|
|
|
2017-05-30 13:12:51 +00:00
|
|
|
#include "events/mbed_shared_queues.h"
|
|
|
|
|
2019-08-01 10:09:13 +00:00
|
|
|
/** \addtogroup events-public-api */
|
2019-07-24 15:59:40 +00:00
|
|
|
/** @{*/
|
2018-10-25 15:45:29 +00:00
|
|
|
#ifndef MBED_NO_GLOBAL_USING_DIRECTIVE
|
2016-09-29 09:38:02 +00:00
|
|
|
using namespace events;
|
2018-10-25 15:45:29 +00:00
|
|
|
#endif
|
2019-07-24 15:59:40 +00:00
|
|
|
/** @}*/
|
2016-09-29 09:38:02 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|