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