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: ANSITermMenuSystem
Fork of menuSystemMbed by
XYPoint.cpp
00001 // 00002 // XYPoint.cpp 00003 // menuSystem 00004 // 00005 // Created by BradDSmith on 2013-02-26. 00006 // Copyright (c) 2013 BradDSmith. All rights reserved. 00007 // 00008 00009 #include "XYPoint.h" 00010 00011 XYPoint::XYPoint() 00012 { 00013 X = 0; 00014 Y = 0; 00015 } 00016 00017 XYPoint::XYPoint( int x, int y) 00018 { 00019 X = x; 00020 Y = y; 00021 00022 } 00023 00024 00025 00026
Generated on Sat Jul 23 2022 00:51:58 by
1.7.2
