repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add mi_thunk support for vcalls on hppa.
[official-gcc.git]
/
libvtv
/
testsuite
/
libvtv.cc
/
parts-test-main.h
blob
fb631dec340c06d512e8258815c7f571234eadc0
1
#include <vector>
2
3
class
ExtraParts
;
4
5
class
MainParts
{
6
public
:
7
MainParts
();
8
virtual
~
MainParts
();
9
virtual
void
AddParts
(
ExtraParts
*
parts
);
10
11
virtual
void
PreEarlyInitialization
();
12
13
protected
:
14
std
::
vector
<
ExtraParts
*>
main_extra_parts_
;
15
};