-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reader.hpp
33 lines (28 loc) · 840 Bytes
/
Reader.hpp
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
//
// Reader.hpp
// Trabalho ED2
//
// Created by Yan Ferreira on 6/26/16.
// Copyright © 2016 Yan Ferreira. All rights reserved.
//
#ifndef Reader_hpp
#define Reader_hpp
#include "Arvore_Multiway.hpp"
#include "Arvore_AVL.hpp"
#include "Tabela_Hash.hpp"
class Reader{
private:
//Atributos
Helper helper;
//Métodos
std::list<string> getFilesInDirectory(string directory);
void insereDicionario(Estrutura * estrutura, ifstream &file);
void buscaDicionario(Estrutura * corretor, Estrutura * estrutura, ifstream &file);
public:
Reader() {};
~Reader() {};
void inserePorDiretorio(Estrutura * estrutura, string directory);
void fazBuscaOrtograficaPorDiretorio(Estrutura * corretor, Estrutura * estrutura, string directory);
int getNumRegistros(string directory);
};
#endif /* Reader_hpp */