Error as described in MBs email to MS

Dependencies:   SDFileSystem app epson mbed msp430 pl tests

pagenfc.h

Committer:
marcbax
Date:
2018-01-11
Revision:
1:5874c1a074a7
Parent:
0:c643d398cdb6

File content as of revision 1:5874c1a074a7:

//
// Filename: pagenfc.h
//
// Flexbook page for page S1.
//

// include guards
#ifndef PAGENFC_H
#define PAGENFC_H

#include "page.h"

namespace Flexbook
{

class PageNFC : public Page
{
public:
    // Constructor needs to be explicit.
    explicit PageNFC();

    // Destructor.
    virtual ~PageNFC();

private:
    // Disable the copy constructor.
    PageNFC(const PageNFC &);

    // Disable assignment.
    PageNFC &operator=(const PageNFC &);
};

} // End Flexbook namespace.

#endif // PAGENFC_H