Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of CRAC-Strat_2017_HOMOLOGATION_PETIT_ROBOT by
FileLike.h
00001 /* mbed Microcontroller Library - FileLike 00002 * Copyright (c) 2008-2009 ARM Limited. All rights reserved. 00003 */ 00004 00005 #ifndef MBED_FILELIKE_H 00006 #define MBED_FILELIKE_H 00007 00008 #include "Base.h" 00009 #include "FileHandle.h" 00010 00011 namespace mbed { 00012 00013 /* Class FileLike 00014 * A file-like object is one that can be opened with fopen by 00015 * fopen("/name", mode). It is intersection of the classes Base and 00016 * FileHandle. 00017 */ 00018 class FileLike : public Base, public FileHandle { 00019 00020 public: 00021 /* Constructor FileLike 00022 * 00023 * Variables 00024 * name - The name to use to open the file. 00025 */ 00026 FileLike(const char *name) : Base(name) { } 00027 virtual ~FileLike(); 00028 00029 }; 00030 00031 } // namespace mbed 00032 00033 #endif
Generated on Wed Jul 13 2022 17:05:17 by
