-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfield.h
48 lines (41 loc) · 982 Bytes
/
field.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
#ifndef FIELD_H
#define FIELD_H
//Importar los encabezados necesarios
#include <string>
#include <sstream>
using namespace std;
/********************************************
*Clase que contiene los datos principales de
*un campo y que sirven de parametros de los
*registros del todo el archivo
*/
class Field
{
//Metodos publicos de la clase
public:
//Constructores y destructores
Field();
Field(string = "", char = ' ', int = 0, int = 0, int = 0);
~Field();
//Mutadores y accesores
string getName() const;
void setName(string);
char getType() const;
void setType(char);
bool isKey() const;
void setKey(int);
int getLength() const;
void setLength(int);
int getDecimalPlaces() const;
void setDecimalPlaces(int);
//toString
string toString() const;
//Caracteristicas privadas de la clase
private:
string Name;
char Type;
int Key;
int Length;
int Decimals;
};
#endif // FIELD_H