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
node.h
- Committer:
- palimar
- Date:
- 2014-11-22
- Revision:
- 35:b42afc973902
File content as of revision 35:b42afc973902:
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(){
}
