-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken.cpp
54 lines (41 loc) · 868 Bytes
/
token.cpp
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
#include "token.h"
const int Token::Conjuncion = 100;
const int Token::Disjuncion = 200;
const int Token::Negacion = 300;
const int Token::Condicional = 400;
const int Token::Bicondicional = 500;
const int Token::ParentesisIzq = 600;
const int Token::ParentesisDer = 700;
const int Token::Proposicion = 800;
const int Token::EspacioBlanco = 900;
Token::Token(){
Tipo = 0;
}
Token::Token(const int tipo){
Tipo = tipo;
}
Token::Token(const int tipo, int valor, char nom){
Tipo = tipo;
Valor = valor;
Nombre = nom;
}
// Metodos Get
int Token::getTipo() const{
return Tipo;
}
int Token::getValor() const{
return Valor;
}
string Token::getNombre() const{
return Nombre;
}
// Metodos Set
void Token::setTipo(int tipo){
Tipo = tipo;
}
void Token::setValor(int valor){
Valor = valor;
}
void Token::setNombre(string nom){
Nombre = nom;
}