Overload error

I have RestaurantCheck.h and RestaurantCheck.cpp files.

This is from RestaurantCheck.cpp error says +1 overload. what's that mean?

1
2
3
4
5
6

// Class Default Constructor
RestaurantCheck::RestaurantCheck(float taxrate, float tip )

{
}


Below is from RestaurantCheck.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class RestaurantCheck
{
	// Public Interface
public:
	// Class Constructor(s)
	RestaurantCheck(float taxrate, float tip);

	// Class Destructor
	~RestaurantCheck();
;

	// Client Methods

	// Private Class Members
private:
	// 1. Constant Value Declarations

	// 2. Variable Declarations
};
Post full error text
Topic archived. No new replies allowed.