/* * MegaUART.h * * Created: 7/31/2014 12:00:58 PM * Author: corwin */ #ifndef __MEGAUART_H__ #define __MEGAUART_H__ class MegaUART { //variables public: protected: private: //functions public: MegaUART(); ~MegaUART(); protected: private: MegaUART( const MegaUART &c ); MegaUART& operator=( const MegaUART &c ); }; //MegaUART #endif //__MEGAUART_H__