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: CANBuffer KS0108_fork mbed-rtos mbed CAN Addresses
Fork of REVO_Updated_Steering by
Diff: node.h
- Revision:
- 36:8544a8900884
- Parent:
- 35:b42afc973902
- Child:
- 37:c9b9057079d9
diff -r b42afc973902 -r 8544a8900884 node.h
--- a/node.h Sat Nov 22 22:24:53 2014 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,35 +0,0 @@
-class node{
-
- public:
-
- node();
- node(int id, int screen);
- void set_val(char v);
- ~node();
-
- int screen;
- int id;
- char value;
- node * next;
-
-};
-
-node::node(){
- screen = 0;
- id = 0;
- next = NULL;
-}
-
-node::node(int i, int s){
- id = i;
- screen = s;
- next = NULL;
-}
-
-void node::set_val(char v){
- value = v;
-}
-
-node::~node(){
-}
-
\ No newline at end of file
