#ifndef constructors_h_
#define constructors_h_
#include<iostream>
using namespace std;
class person{
private:
int age();
string name();
public:
person();
person(string newName){
name=newName; age=0;};
string tostring();
};
#endif constructors_h_
I am completely new to coding a was trying to use use string stream but my compilers keeps showing this problem(vs code)