blob: e687bb2cc763d487898352a8be2f74deba494f84 (
plain)
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
43
44
45
46
47
48
49
50
|
// $Id$
// ============================================================================
//
// = LIBRARY
// performance-tests/Misc
//
// = FILENAME
// basic_func.h
//
// = DESCRIPTION
// For use with basic_perf.cpp.
//
// = AUTHOR
// David Levine
//
// ============================================================================
// An external (global) function.
void func ();
// A class with no virtual functions.
class Foo
{
public:
void inline_func () {}
void func ();
};
// A class with a virtual function.
class Foo_v
{
public:
void inline_func () {}
void func ();
virtual void v_func ();
};
// A derived class.
class Foo_d_v : public Foo_v
{
public:
virtual void v_func ();
};
// EOF
|