I dont understand error "definition of implicity-declared 'Clothing::Clothing()'
16:53 09 Mar 2019

The question:

Why is the following error happening?

definition of implicity-declared 'Clothing::Clothing()

The context:

As an assignment I have to do constructors, destructors and methods in a class Clothing. I'm having a problem when I try to define the constructor in clothing.cpp. I have read that the problem is because I did not declare the constructor in clothing.h, but I think how I have done it, it's declared. I have no clue where the problem lies.

My code:

clothing.h:

#ifndef CLOTHING_H_
#define CLOTHING_H_
#include 
#include 

using namespace std;

class Clothing {
private:
    int gender;
    int size;
    string name;

public:
    Clothing();
    Clothing(const Clothing &t);
    Clothing(int gender, int size, string name);
    ~Clothing();
    int getGender();
    int getSize();
    string getName();
    void setGender(int gender1);
    void setSize(int size1);
    void setName(string name1);
    void print();
    void toString();
};

#endif /* CLOTHING_H_ */

clothing.cpp:

#include 
#include "clothing.h"
#include 
#include 

using namespace std;

Clothing::Clothing() :
        gender(1), 
        size(1), 
        name("outofstock") {

}

Clothing::Clothing(const Clothing& t) :
        gender(t.gender), 
        size(t.size), 
        name(t.name) {
}

Clothing::Clothing(int gender, int size, string name) {

}

int Clothing::getGender() {
    return gender;
}

int Clothing::getSize() {
    return size;
}

string Clothing::getName() {
    return name;
}

void Clothing::setGender(int gender1) {
    gender = gender1;
}

void Clothing::setSize(int size1) {
    size = size1;
}

void Clothing::setName(string name1) {
    name = name1;
}

void Clothing::print() {
    cout << name << "  " << gender << "  " << size << endl;
}

void Clothing::toString() {
    stringstream ss;
    ss << name << "  " << gender << "  " << size;
    cout << ss.str();
}

Errors: \src\clothing.cpp:7:21: error: definition of implicitly-declared 'Clothing::Clothing()'

\src\clothing.cpp:14:37: error: definition of implicitly-declared 'Clothing::Clothing(const Clothing&)'

c++ oop constructor