repo.or.cz
/
fridhskrift.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Continuing the work on the class implementation and the line processing code
[fridhskrift.git]
/
frith
/
module.hpp
blob
82e17dfcf31a6fe70d0a632c190bd57b5e0530b5
1
#include <string>
2
#include <frith/function.hpp>
3
4
namespace
frith
5
{
6
struct
module
7
{
8
std
::
string path
;
9
symbol_tree_node symbols
;
10
function entry_function
;
11
};
12
}