1

Committer:
valeyev
Date:
Tue Mar 13 07:17:50 2018 +0000
Revision:
0:e056ac8fecf8
looking for...

Who changed what in which revision?

UserRevisionLine numberNew contents of line
valeyev 0:e056ac8fecf8 1
valeyev 0:e056ac8fecf8 2 /** \addtogroup events */
valeyev 0:e056ac8fecf8 3 /** @{*/
valeyev 0:e056ac8fecf8 4 /* events
valeyev 0:e056ac8fecf8 5 * Copyright (c) 2016 ARM Limited
valeyev 0:e056ac8fecf8 6 *
valeyev 0:e056ac8fecf8 7 * Licensed under the Apache License, Version 2.0 (the "License");
valeyev 0:e056ac8fecf8 8 * you may not use this file except in compliance with the License.
valeyev 0:e056ac8fecf8 9 * You may obtain a copy of the License at
valeyev 0:e056ac8fecf8 10 *
valeyev 0:e056ac8fecf8 11 * http://www.apache.org/licenses/LICENSE-2.0
valeyev 0:e056ac8fecf8 12 *
valeyev 0:e056ac8fecf8 13 * Unless required by applicable law or agreed to in writing, software
valeyev 0:e056ac8fecf8 14 * distributed under the License is distributed on an "AS IS" BASIS,
valeyev 0:e056ac8fecf8 15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
valeyev 0:e056ac8fecf8 16 * See the License for the specific language governing permissions and
valeyev 0:e056ac8fecf8 17 * limitations under the License.
valeyev 0:e056ac8fecf8 18 */
valeyev 0:e056ac8fecf8 19 #ifndef MBED_EVENTS_H
valeyev 0:e056ac8fecf8 20 #define MBED_EVENTS_H
valeyev 0:e056ac8fecf8 21
valeyev 0:e056ac8fecf8 22
valeyev 0:e056ac8fecf8 23 #include "equeue/equeue.h"
valeyev 0:e056ac8fecf8 24
valeyev 0:e056ac8fecf8 25
valeyev 0:e056ac8fecf8 26 #ifdef __cplusplus
valeyev 0:e056ac8fecf8 27
valeyev 0:e056ac8fecf8 28 #include "events/EventQueue.h"
valeyev 0:e056ac8fecf8 29 #include "events/Event.h"
valeyev 0:e056ac8fecf8 30
valeyev 0:e056ac8fecf8 31 #include "events/mbed_shared_queues.h"
valeyev 0:e056ac8fecf8 32
valeyev 0:e056ac8fecf8 33 using namespace events;
valeyev 0:e056ac8fecf8 34
valeyev 0:e056ac8fecf8 35 #endif
valeyev 0:e056ac8fecf8 36
valeyev 0:e056ac8fecf8 37
valeyev 0:e056ac8fecf8 38 #endif
valeyev 0:e056ac8fecf8 39
valeyev 0:e056ac8fecf8 40 /** @}*/