I need some help. I am to write a reporting system in C++ and the part of the system I need help with is to be able to: List all lecturers in alphabetic order by surname within a selected department.
I got 2 different text files as shown below with some data:
Department text file:
Department (identifier, name, foreign key)
ET Engineering and Technology AT
BE Built Environment AT
CMS Computing and Mathematical Sciences AT
Lecturers text file:
Lecturer (identifier, surname, forename, foreign key)
RG Garwood Roy ET
BM Muller Bertie CMS
SL Lloyd Steve BE
How do I search for information and collect what I need from two different text files that are linked?
Below is part of some code of the system
Part of main.cpp
void listoflecturerbydepartment()
{
int Department;
// Display message asking for the user input
std::cout << "List all lecturers by surname within a selected department" << std::endl;
std::cout << "Enter your preferred department." << std::endl;
std::cout << "Either of the following: ET, BE, CMS, SAS, CS and PESD:" << std::endl;
// Read in from the user input
std::cin >> Department;
// Search for all lecturers by their surname with the selected department
// Read from text file and Display list of lecturers
std::ifstream infile; // enable to open, read in and close a text file
std::string LecturerSurname;
infile.open("Lecturer.txt"); // open a text file called Lecturer
if (!infile)
{
std::cout << "Item list is empty" << std::endl; // if the file is empty it output the message
}
else
{
std::cout << "List of Lecturers: " << std::endl;
while(!infile.eof()) // output the description of the text file onto the screen
//(iter != itemList->end())
{
getline(infile,LecturerSurname);
std::cout << LecturerSurname << std::endl;
//iter++;
}
std::cout << "End of list\n" << std::endl;
}
infile.close(); // close the text file
}
Department.h file
#pragma once
#include <iostream>
#include <string>
class department
{
public:
float DepartmentCode;
std::string DepartmentName;
private:
department(void);
~department(void);
department(float DepartmentCode, std::string DepartmentName);
std::string getDepartmentName(void);
};
Lecturer.h file
#pragma once
#include <iostream>
#include <string>
class lecturer
{
public:
float LecturerCode;
std::string LecturerSurname;
std::string LecturerForename;
private:
lecturer(void);
~lecturer(void);
lecturer(float LecturerCode, std::string LecturerSurname, std::string LecturerForename);
std::string getLecturerSurname(void);
};
Now updated with new code
floats? They don't look like real numbers in the text file ... – Useless Dec 9 '12 at 20:41