Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.

Paste

Pasted as C++ by registered user raphael ( 3 years ago )
#ifndef NOMMERE_H
#define NOMMERE_H
#include <string>
using namespace std;

class NomMere
{
public:
    int age;
    string prenom;
    string nom;
    NomMere(int,string,string);
    virtual string toString()=0;
    virtual void fonction()=0;
};

#endif // NOMMERE_H

 

Revise this Paste

Your Name: Code Language: