Email with Mailbox class; compilation error

It isn't suppose to output anything but it doesn't seem to compile.
im not sure whats wrong, if anyone could point me in the right direction.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <iostream>
#include <string>
#include <vector>
using namespace std;

class Email
{
	public:
	    Email();
	    Email(string sender, string recipient, string subject, string text);
	    string getSender();
	    string getSubject();
	    string getRecipient();
	    string getText();
	private:
	    string sender;
	    string recipient;
	    string subject;
	    string text;
};

Email:: Email(string sender, string recipient, string subject, string text)
{
	this->sender = sender;
	this->recipient = recipient;
	this->subject = subject;
	this->text = text;
}

string Email:: getSender()
{
	return sender;
}

class Mailbox
{
	public:
	    Mailbox();
	    void addmessage(Email newmessage);
	    vector<Email> getmessage(string sender);
	private:
	    vector<Email> messages;
};

void Mailbox:: addmessage (Email newmessage)
{
	messages.push_back(newmessage);
}

vector <Email> Mailbox:: getmessage(string sender)
{
	vector<Email> temp;
	    for(int i=0; i<messages.size();i++)
	    { if(messages[i].getSender()==sender)
		{
		   temp.push_back(messages[i]);
		}
	    }
	return temp;
}
int main()
{
    string s, r, sub, t;
    cout<<"input sender";
    cin>>s;
    cout<<"input subject";
    getline(cin,sub);
    Email m=Email(s,r,sub,t);
    Mailbox b = Mailbox();
	b.addmessage(m);
}


this is the error i get:

tmp/ccCa7DiT.o: In function `main':
problem3.cpp:(.text+0x397): undefined reference to `Mailbox::Mailbox()'
collect2: error: ld returned 1 exit status
Last edited on
You defined a constructor " Mailbox" but didnt define its body.

1
2
public:
	    Mailbox();


Define its body.Its because of this issue.
Hi,

Line 69 is confused, maybe you meant:

Mailbox b;
Thanks guys, i got it, appreciate the help!!
Topic archived. No new replies allowed.