Está en la página 1de 2

#ifndef _CLIENTE_HPP_

#define _CLIENTE_HPP_

#include <iostream>

using namespace std;

namespace bblProgII{

class Cliente{

public:

~Cliente();

Cliente();

Cliente(const string &n, int d);

Cliente(const Cliente& o);

Cliente& operator=(const Cliente& o);

bool error() const;

string obtener_nombre() const;

int obtener_dinero() const;

void modificar_dinero(int d, bool &ok);

void mostrar() const;

private:
string id;

int dinero;

};

#endif

También podría gustarte