#ifndef NODE_H #define NODE_H #include "PrintJob.h" struct node{ PrintJob data ; node * next ; }; #endif