-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInformacion.h
59 lines (48 loc) · 1.32 KB
/
Informacion.h
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef INFORMACION_H_INCLUDED
#define INFORMACION_H_INCLUDED
#include "Almacenable.h"
#include <string>
#include <fstream>
using namespace std;
/**
* Clase que representa lo que es la informacion para el sistema.
*/
class Informacion : public Almacenable{
protected:
unsigned int tamano;
bool comprimida;
public:
// Constructor
Informacion(){
this->tamano = 0;
this->comprimida = false;
}
// Destructor librado a clases hijas
virtual ~Informacion(){
}
/**
* Devuelve el tamaño de la informacion
*/
virtual unsigned int getTamano(){
return this->tamano;
};
/**
* Setea el tamaño de la informacion
*/
virtual void setTamano(unsigned int tamano){
this->tamano = tamano;
};
/**
* Permite setear la bandera q indica si la particion fue o no comprimida
*/
void setComprimida (bool comprimida){
this->comprimida = comprimida;
}
/**
* Permite saber si la particion esta comprimida
*/
bool estaComprimida(){
return this->comprimida;
}
};
#endif // INFORMACION_H_INCLUDED