summaryrefslogtreecommitdiff
path: root/performance-tests/Misc/basic_func.h
diff options
context:
space:
mode:
Diffstat (limited to 'performance-tests/Misc/basic_func.h')
-rw-r--r--performance-tests/Misc/basic_func.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/performance-tests/Misc/basic_func.h b/performance-tests/Misc/basic_func.h
deleted file mode 100644
index e687bb2cc76..00000000000
--- a/performance-tests/Misc/basic_func.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// $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