Need help! Error within class

How can i fix this issue?
currently i have my public/private class constructed and now trying to just compile the functions within them. They contain no code and it seems to be an issue between the functions in the .cpp and the .h files. It says the functions do not exist in the header but I thought I formatted the functions correctly.

.h file

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
//---------------------------------------------------
// Filename: tweet.h
// Purpose: The header file for a class to store a single tweet
//---------------------------------------------------
#include <fstream>
#include <string>
using namespace std;

class Tweet 
{
public:
   // Constructors and Destructors
   Tweet();       // default constructor
   Tweet (const string Date, const string Hashtag, const string Contents);  // non-default constructor
   Tweet (const Tweet &OtherTweet); // copy constructor
   ~Tweet();      // destructor

   // Mutators
   void Set(const string Date, const string Hashtag, const string Contents);  // fill from variables
   bool FillTweet(ifstream &Din);                           // fill from a stream (open file)
   
   // Accessors
   void Get(string &Date, string &Hashtag, string &Contents) const;
   string GetHashtag() const;
   string GetContents() const;
   string GetDate() const;

   // Other Useful Functions
   void Print() const;
   bool SameHashtag(const Tweet &OtherTweet) const;
   bool SameContents(const Tweet &OtherTweet) const;
   bool SameDate(const Tweet &OtherTweet) const;

private:
   string hashtag;
   string contents;
   string date;
};


and the .ccp for the class header file

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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
//---------------------------------------------------
// Filename:  Tweet.cpp
// Purpose: The implementation of the Tweet class
//---------------------------------------------------
#include <fstream>
#include <iostream>
#include <string>
#include <iomanip>
#include "tweet.h"
using namespace std;

//-------- Constructors and Destructors -------------
// Default constructor
Tweet::Tweet()
{

}
// Non-default constructor
Tweet::Tweet(const string Date, const string Hashtag, const string Contents)
{

}
// Copy constructor
Tweet::Tweet(const Tweet &OtherTweet)
{

}
// Destructor
Tweet::~Tweet()
{
	//Do Nothing
}
//-------- Mutators ---------------------------------
void Tweet::Set(const string Date, const string Hashtag, const string Contents)
{

}

bool Tweet::FillTweet(ifstream &Din)
{
bool Success = false;

return Success;
}
//---------------------------------------------------
// Fill a single Tweet from a stream (open file)
// Returns true if able to read a tweet; false if end of file is encountered
// Assumes that each line in the file is correct (no partial tweets)

//-------- Accessors --------------------------------
// Get all instance variable values
   void Tweet::Get(string &Date, string &Hashtag, string &Contents)
   {

   }
// Return the date
   string Tweet::GetDate()
   {
	   string Content;

	   return Content;
   }
// Return the hashtag
   string Tweet::GetHashtag()
   {
	   string Content;

	   return Content;
   }
// Return the contents
string Tweet::GetContents()
   {
	   string Content;

	   return Content;
   }
//-------- Other Useful Methods ---------------------
// Print one tweet
void Tweet::Print()
{

}
// Return true if the other tweet has the same date
bool Tweet::SameDate(const Tweet &OtherTweet)
{
bool Success = false;

return Success;
}
// Return true if the other tweet has the same hashtag
bool Tweet::SameHashtag(const Tweet &OtherTweet)
{
	bool Success = false;

return Success;
}
// Return true if the other tweet has the same contents
bool Tweet::SameContents(const Tweet &OtherTweet)
{
bool Success = false;

return Success;
}


The error im getting is this while compiling:

1>------ Build started: Project: Project2, Configuration: Debug Win32 ------
1>  Tweet.cpp
1>c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.cpp(53): error C2511: 'void Tweet::Get(std::string &,std::string &,std::string &)' : overloaded member function not found in 'Tweet'
1>          c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.h(10) : see declaration of 'Tweet'
1>c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.cpp(58): error C2511: 'std::string Tweet::GetDate(void)' : overloaded member function not found in 'Tweet'
1>          c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.h(10) : see declaration of 'Tweet'
1>c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.cpp(65): error C2511: 'std::string Tweet::GetHashtag(void)' : overloaded member function not found in 'Tweet'
1>          c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.h(10) : see declaration of 'Tweet'
1>c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.cpp(72): error C2511: 'std::string Tweet::GetContents(void)' : overloaded member function not found in 'Tweet'
1>          c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.h(10) : see declaration of 'Tweet'
1>c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.cpp(80): error C2511: 'void Tweet::Print(void)' : overloaded member function not found in 'Tweet'
1>          c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.h(10) : see declaration of 'Tweet'
1>c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.cpp(85): error C2511: 'bool Tweet::SameDate(const Tweet &)' : overloaded member function not found in 'Tweet'
1>          c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.h(10) : see declaration of 'Tweet'
1>c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.cpp(92): error C2511: 'bool Tweet::SameHashtag(const Tweet &)' : overloaded member function not found in 'Tweet'
1>          c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.h(10) : see declaration of 'Tweet'
1>c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.cpp(99): error C2511: 'bool Tweet::SameContents(const Tweet &)' : overloaded member function not found in 'Tweet'
1>          c:\users\ian\documents\visual studio 2012\projects\project2\project2\tweet.h(10) : see declaration of 'Tweet'
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Topic archived. No new replies allowed.