-
Notifications
You must be signed in to change notification settings - Fork 1
/
publicInterface.h
41 lines (32 loc) · 987 Bytes
/
publicInterface.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
#ifndef __PUBLICINTERFACE_H__
#define __PUBLICINTERFACE_H__
/*
* Algoritmos e Estruturas de Dados II
* Autores: Lucas Toschi, Murilo Todão e Marcos Ordonha (Grupo 15)
*
* PUBLICINTERFACE.H
* Neste arquivo estão todas as funções que são chamadas
* quando o usuário precisa realizar alguma das funções
* disponíveis pelo programa: busca, inserção, atualização
* e impressão.
*/
#include "student.h"
#include "bTreeUtils.h"
#include "bTreeSearch.h"
#include "bTreeInsert.h"
#include "streamHandler.h"
/*
* Função de busca a partir de uma chave númerica (inteiro).
*/
void search(int key);
/*
* Função de inserção a partir das informações de um estudante
* organizadas na struct "studentRegister".
*/
void insert(studentRegister *student);
/*
* Função de atualização a partir das informações de um estudante
* organizadas na struct "studentRegister".
*/
void update(studentRegister *student);
#endif