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.
Dependencies: SDFileSystem app epson mbed msp430 pl tests
pagenfc.h
00001 // 00002 // Filename: pagenfc.h 00003 // 00004 // Flexbook page for page S1. 00005 // 00006 00007 // include guards 00008 #ifndef PAGENFC_H 00009 #define PAGENFC_H 00010 00011 #include "page.h" 00012 00013 namespace Flexbook 00014 { 00015 00016 class PageNFC : public Page 00017 { 00018 public: 00019 // Constructor needs to be explicit. 00020 explicit PageNFC(); 00021 00022 // Destructor. 00023 virtual ~PageNFC(); 00024 00025 private: 00026 // Disable the copy constructor. 00027 PageNFC(const PageNFC &); 00028 00029 // Disable assignment. 00030 PageNFC &operator=(const PageNFC &); 00031 }; 00032 00033 } // End Flexbook namespace. 00034 00035 #endif // PAGENFC_H 00036
Generated on Tue Jul 12 2022 21:14:35 by
