#include using namespace std; #include "Node.h" class LLDeluxe { private: Node *first; Node *before, *current; int count; public: LLDeluxe(); void add_before(char x); bool at_first(); bool at_last(); void display_all(); void display_current(); void find_insert_spot(char x); void find_item(char x); char get_current_item(); void move_first(); void move_last(); void move_next(); void remove(); };