Birkbeck College Mobile and Ubiquitous Computing IoT Lab Exercise 2

Dependencies:   BLE_API_Native_blog

Committer:
gkroussos
Date:
Sat Mar 07 16:34:53 2015 +0000
Revision:
0:e8fdba0ed044
MUC IoT Workshop v1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gkroussos 0:e8fdba0ed044 1 /* mbed Microcontroller Library
gkroussos 0:e8fdba0ed044 2 * Copyright (c) 2006-2013 ARM Limited
gkroussos 0:e8fdba0ed044 3 *
gkroussos 0:e8fdba0ed044 4 * Licensed under the Apache License, Version 2.0 (the "License");
gkroussos 0:e8fdba0ed044 5 * you may not use this file except in compliance with the License.
gkroussos 0:e8fdba0ed044 6 * You may obtain a copy of the License at
gkroussos 0:e8fdba0ed044 7 *
gkroussos 0:e8fdba0ed044 8 * http://www.apache.org/licenses/LICENSE-2.0
gkroussos 0:e8fdba0ed044 9 *
gkroussos 0:e8fdba0ed044 10 * Unless required by applicable law or agreed to in writing, software
gkroussos 0:e8fdba0ed044 11 * distributed under the License is distributed on an "AS IS" BASIS,
gkroussos 0:e8fdba0ed044 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
gkroussos 0:e8fdba0ed044 13 * See the License for the specific language governing permissions and
gkroussos 0:e8fdba0ed044 14 * limitations under the License.
gkroussos 0:e8fdba0ed044 15 */
gkroussos 0:e8fdba0ed044 16 #ifndef MBED_FILELIKE_H
gkroussos 0:e8fdba0ed044 17 #define MBED_FILELIKE_H
gkroussos 0:e8fdba0ed044 18
gkroussos 0:e8fdba0ed044 19 #include "FileBase.h"
gkroussos 0:e8fdba0ed044 20 #include "FileHandle.h"
gkroussos 0:e8fdba0ed044 21
gkroussos 0:e8fdba0ed044 22 namespace mbed {
gkroussos 0:e8fdba0ed044 23
gkroussos 0:e8fdba0ed044 24 /* Class FileLike
gkroussos 0:e8fdba0ed044 25 * A file-like object is one that can be opened with fopen by
gkroussos 0:e8fdba0ed044 26 * fopen("/name", mode). It is intersection of the classes Base and
gkroussos 0:e8fdba0ed044 27 * FileHandle.
gkroussos 0:e8fdba0ed044 28 */
gkroussos 0:e8fdba0ed044 29 class FileLike : public FileHandle, public FileBase {
gkroussos 0:e8fdba0ed044 30
gkroussos 0:e8fdba0ed044 31 public:
gkroussos 0:e8fdba0ed044 32 /* Constructor FileLike
gkroussos 0:e8fdba0ed044 33 *
gkroussos 0:e8fdba0ed044 34 * Variables
gkroussos 0:e8fdba0ed044 35 * name - The name to use to open the file.
gkroussos 0:e8fdba0ed044 36 */
gkroussos 0:e8fdba0ed044 37 FileLike(const char *name);
gkroussos 0:e8fdba0ed044 38
gkroussos 0:e8fdba0ed044 39 virtual ~FileLike();
gkroussos 0:e8fdba0ed044 40 };
gkroussos 0:e8fdba0ed044 41
gkroussos 0:e8fdba0ed044 42 } // namespace mbed
gkroussos 0:e8fdba0ed044 43
gkroussos 0:e8fdba0ed044 44 #endif