これが私のコードです。すべてのファイルをコンパイルすると、このエラーが発生します。何が間違っているのかわかりません。お知らせ下さい。
Molecul.cpp:7:34: エラー: コンストラクターの戻り値の型指定が無効です
//Sunny Pathak
//Molecule.cpp
#include <iostream>
#include "Molecule.h"
using namespace std;
inline void Molecule::Molecule(){
int count;
count = 0;
}//end function
bool Molecule::read(){
cout << "Enter structure: %c\n" << structure << endl;
cout << "Enter full name: %c\n" << name << endl;
cout << "Enter weight : %f\n" << weight << endl;
}//end function
void Molecule::display() const{
cout << structure << ' ' << name << ' ' << weight << ' ' << endl;
}//end function