-
Notifications
You must be signed in to change notification settings - Fork 0
/
MateriaPrima.hpp
45 lines (36 loc) · 946 Bytes
/
MateriaPrima.hpp
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef MATERIAPRIMA_H
#define MATERIAPRIMA_H
#include <string>
#include <string.h>
#include <list>
#include <iostream>
#include "Lote.hpp"
#include "Date.hpp"
using namespace std;
class MateriaPrima {
private:
int LoteAtual;
protected:
string Nome;
float EstoqueAtual = 0;
float EstoqueMinimo;
list<Lote> Lotes;
float Medida;
string UnidadeMedida;
void SetLoteAtual();
public:
MateriaPrima();
string GetNome();
list<Lote> GetLotes();
float GetEstoqueAtual();
float GetEstoqueMinimo();
float GetMedida();
string GetUnidadeMedida();
float GetLoteAtual();
void SetNome(string Nome);
void SetLotes(float Quantidade, Date DataProducao, float ValorDeCompra);
void SetEstoqueAtual(float EstoqueAtual);
void SetEstoqueMinimo(string EstoqueMinimo);
void SetMedida(string Medida);
};
#endif