NEED HELP DESPERATELY

Im not really good at programming, but i hope to learn soon.. for the time being can anyone help me with this:

Problem statement
Immigration department is responsible for granting different kinds of visas. Suppose you have been hired by Australian immigration department to make a software to process visa applications. Visa application details are given below:
visa_type: tourist visa, student visa or business visa.
invoice_no: invoice number of visa application
surname: surname of principal applicant
first_name: first name of principal applicant
contact: phone number of principal applicant
status: current status of the visa application (waiting client's response - WCR, in the queue (not processed) - NP, in process -IP, completed -C)
result: the outcome of visa application (success, failure, no decision by default)

Requirements
1. Download the linked list program from moodle. You must use this given program for your assignment. DO NOT CHANGE any given code.
2. Make a class for visa application which MUST inherit from node_data.
3. Make a List of visa application data given in the sample file.
4. Write the following functions in main:
i. void Print(?): Print all applications of the sample data to the standard output.
ii. void print_success_list(?): print only successful applications.
iii. void print_failure_list(?): print only unsuccessful applications.
iv. void remove_success_failure(?): remove all successful and unsuccessful applications from the linked list.
5. Provide appropriate menu for your client.

This is the linked list

#include <iostream>
#include <stdlib.h>
#include <string>
#include <fstream>

using namespace std;

#include "List.h"
#include "visa_application.h"

int main()
{
List myList;

ifstream in;
in.open("applications.txt",ios::in);



//TODO...


in.close();

system ("pause");
return 0;
}


// help
Have you started?
Topic archived. No new replies allowed.