having problem with the this problem

Design a class called supportTicket that handles information about reported IT support issues. A ticket includes an id number, the location of the equipment (e.g., building and room number), a short description of the issue, and a priority level. A valid priority level is a value from 1-5. Tickets are services based on their priority level, from highest to lowest. More than one ticket may have the same priority level. However, when entering an item into the list that has the same priority as another item, the newest item should come after any previously entered items with the same priority. When a ticket is serviced, it is removed from the list.

Implement a menu system that allows the program user to add a support ticket, service a ticket (remove it from list), and list active tickets in order of priority.
I'll start it for you.

1
2
3
4
5
class supportTicket
{


};


If you couldn't manage that much, give up now.
This is a duplicate of:

http://www.cplusplus.com/forum/beginner/243473/

DON'T waste people's time by spamming multiple threads for the same problem.
Topic archived. No new replies allowed.