Skip to content

Instantly share code, notes, and snippets.

View Verdagon's full-sized avatar

Evan Ovadia Verdagon

View GitHub Profile
template<typename T>
class LinkedList {
struct Node {
Node * previous;
Node * next;
T value;
};
class SteeringWheel {
public:
boolean fuzzy;
SomeExternalResource * resource;
// copy constructor
SteeringWheel(const SteeringWheel & other) {
fuzzy = other.fuzzy;