Committer:
Bethory
Date:
Wed May 30 04:46:28 2018 +0000
Revision:
1:fcdb45ee95b9
Parent:
0:6ad07c9019fd
Entrega Final

Who changed what in which revision?

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