You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
455 B
29 lines
455 B
#ifndef RECETTE_HPP
|
|
#define RECETTE_HPP
|
|
|
|
#include <iostream>
|
|
#include "ingredient.hpp"
|
|
|
|
|
|
namespace appli {
|
|
|
|
class Recette {
|
|
|
|
std::string nom;
|
|
std::string description;
|
|
|
|
public:
|
|
|
|
Recette(const std::string &nom, const std::string &description);
|
|
|
|
std::string getNom() const;
|
|
std::string getDescription() const;
|
|
};
|
|
|
|
bool operator<(const Recette &r1, const Recette &r2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //RECETTE_HPP
|