-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterfazBC.h
executable file
·27 lines (24 loc) · 1.21 KB
/
InterfazBC.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
/*---------------------------------------------------------------------------*\
| Archivo : InterfazBC.h |
| Proyecto : Prolog.bpr |
| Programado por: Patricio Merino - Paul Leger. |
| Descripción : Esta librería encapsula datos y métodos para una interzaz |
| en la cual el Motor de Inferencia se comunica con las |
| sentencias SQL. |
| La conexión se realiza entre el Motor de Inferencia y la |
| Base de Conocimientos generada en la etapa de |
| intrepretación. |
| Usada por : Motor.cpp |
\*---------------------------------------------------------------------------*/
#ifndef InterfazBCH
#define InterfazBCH
#include "Regla.h"
#include "SQL.h"
class InterfazBC
{
public:
InterfazBC();
bool Existe_regla(String nombre_predicado);
Regla * Entregar_regla(String nombre_predicado, int indice_regla);
};
#endif