FlexBook / Mbed 2 deprecated FlexBook171204a

Dependencies:   SDFileSystem app epson mbed msp430 pl tests

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pagenfc.h Source File

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