Błedy pojawiają się przy tym fragmencie:
People::People()
:name(x), dateOfBirth(bo)
coś nie tak jest z tym ale moim zdaniem wydaje się ok
Program składa się z 5 plików:
Main:
#include <iostream>
#include "Birthday.h"
#include "People.h"
using namespace std;
int main()
{
Birthday birthObj(12, 28, 1998);
People piotrCiosmak("Piotr king", birthObj);
piotrCiosmak.printInfo();
system("PAUSE");
}
Klasa People (2 osobne pliki .h i .cpp)
#pragma once
#include "Birthday.h"
#include <string>
using namespace std;
class People
{
public:
People(string x, Birthday bo);
void printInfo();
private:
string name;
Birthday dateOfBirth;
};
#include <iostream>
#include "People.h"
#include "Birthday.h"
using namespace std;
People::People()
:name(x), dateOfBirth(bo)
{
}
void People::printInfo()
{
cout << name << " was born on";
dateOfBirth.printDate();
}
Klasa Birthday (2 osobne pliki .h i .cpp)
#pragma once
class Birthday
{
public:
Birthday(int d, int m, int y);
void printDate();
private:
int day;
int month;
int year;
};
#include <iostream>
#include "Birthday.h"
using namespace std;
Birthday::Birthday(int d, int m, int y)
{
day = d;
month = m;
year = y;
}
void Birthday::printDate()
{
cout << day << "/" << month << "/" << year << endl;
}