repo.or.cz
/
ozulis.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added BoolType
[ozulis.git]
/
src
/
parse-task.hh
blob
39a485039b2ee76e595655812679868152454536
1
#ifndef PARSE_TASK_HH
2
# define PARSE_TASK_HH
3
4
# include <string>
5
6
# include <task.hh>
7
8
class
ParseTask
:
public
Task
9
{
10
public
:
11
virtual
~
ParseTask
();
12
virtual
void
accept
(
Compiler
&
compiler
);
13
14
/**
15
* @todo add a method which returns a list of dependancies
16
* tasks.
17
*/
18
19
std
::
string filename
;
20
};
21
22
#endif
/* !PARSE_TASK_HH */