-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParseur.class.hpp
42 lines (35 loc) · 1.4 KB
/
Parseur.class.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
34
35
36
37
38
39
40
41
42
// ************************************************************************** //
// //
// ::: :::::::: //
// Parseur.class.hpp :+: :+: :+: //
// +:+ +:+ +:+ //
// By: jmoiroux <[email protected]> +#+ +:+ +#+ //
// +#+#+#+#+#+ +#+ //
// Created: 2015/01/20 11:11:33 by jmoiroux #+# #+# //
// Updated: 2015/01/20 11:11:33 by jmoiroux ### ########.fr //
// //
// ************************************************************************** //
#ifndef PARSEUR_CLASS_HPP
# define PARSEUR_CLASS_HPP
# include "main.hpp"
# include "ft42.class.hpp"
class Parseur : public ft42 {
public:
Parseur( char * path );
~Parseur();
t_pts fileToTab( void );
void printMap( void );
void sortByZ_minToMax( void );
void resizeValue( void );
class ErrorParse : public std::exception {
public:
virtual const char* what() const throw();
};
private:
char * _pathToSource;
t_data * _d;
Parseur(Parseur const & rSource);
Parseur & operator=(Parseur const & rSource);
Parseur();
};
#endif