summaryrefslogtreecommitdiffstats
path: root/2022-2/L10/mitsuo/Generico.h
blob: 034aa52fcca6b82e3fe436ea660b7369b94b1440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* 
 * File:   Generico.h
 * Author: mitsuo
 *
 * Created on 02 December 2022, 12:35
 */

#ifndef GENERICO_H
#define GENERICO_H

#include "Medicamento.h"

class Generico : public Medicamento {
public:
    Generico();
    Generico(const Generico& orig);
    virtual ~Generico();
    
    int lee(std::istream &input);
    void imprime(std::ostream &output);
private:
    char * pais;
};

#endif /* GENERICO_H */