In my header file I have:
#include <iostream>
#include <string>
using namespace std;
class Customer
{
public:
//Output
void displayLabel(ostream &out);
And in my main:
#include <iostream>
#include <fstream>
#include <string>
#include <iomanip>
#include "Customer.h"
using namespace std;
Customer cust;
string blank = " ";
string line;
int start, end, count;
string titl, firstNam, middleNam, lastNam, add, cit, stat, zip, phone;
int main()
{
cust.displayLabel();
NOTE: I took out a lot of unnecessary code to get straight to the point.
I know that my parameters do not match up, but that's my question: what do I send to the function parameter wise for ostream &out? I'm kind of lost in this part...
Thanks!