-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTabla.h
71 lines (59 loc) · 1.44 KB
/
Tabla.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
60
61
62
63
64
65
66
67
68
69
70
71
#ifndef Tabla_H_
#define Tabla_H_
#include <iostream>
#include <kcstashdb.h>
#include <string.h>
#include <map>
#include <fstream>
#include <limits.h>
#include <float.h>
#include <cstdlib>
#include <list>
#define C 300 //Maximo de Clases
#define I 249000 //Maximo de Instancias
#define P 500 //Maximo de Propiedades
#define E 150 //Maximo de Eventos
#define V 100 //Maximo de propiedades dentro de una expresion y maximo de eventos en una consulta reactiva (P,[ev1,eve2,...,eve100),C]
#define ENTERO 0
#define REAL 1
#define CADENA 2
using namespace kyotocabinet;
using namespace std;
typedef std::map< string, int, std::less<string> > Cuadro; //Tipo de dato Tabla de Hash, con Key de string y Value de entero
/** En esta clase se establecen las funciones, librerias
y variables definidas usadas a lo largo de toda la ontología,
ademas de establecer las limitaciones **/
class Tabla{
public:
Tabla();
~Tabla();
string EnteroAString(int a);
string DoubleAString(double a);
char* StringAChar(string a);
};
//Constructor
Tabla::Tabla(){
}
//Destructor
Tabla::~Tabla(){
}
//Pasar un entero a string
string EnteroAString(int a){
stringstream ss;
ss << a;
return ss.str();
}
//Pasar un double a string
string DoubleAString(double a){
stringstream ss;
ss << a;
return ss.str();
}
//Pasar string a char
char* StringAChar(string a){
char *i,*p = &a[0];
i = new char[strlen(p)+1];
strcpy(i, p);
return i;
}
# endif