Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ode/ode-0.9/tests/CppTestHarness/TestLauncher.cpp @ 216

Last change on this file since 216 was 216, checked in by mathiask, 16 years ago

[Physik] add ode-0.9

File size: 472 bytes
Line 
1#include "TestLauncher.h"
2
3namespace CppTestHarness
4{
5
6namespace
7{
8        TestLauncher* s_listHead;
9}
10
11TestLauncher** TestLauncher::GetHeadAddr()
12{
13        static bool initialized = false;
14        if (!initialized)
15        {
16                s_listHead = 0;
17                initialized = true;
18        }
19
20        return &s_listHead;
21}
22
23TestLauncher::TestLauncher(TestLauncher** listHead)
24        : m_next(*listHead)
25{
26        *listHead = this;
27}
28
29TestLauncher::~TestLauncher()
30{
31}
32
33TestLauncher const* TestLauncher::GetNext() const
34{
35        return m_next;
36}
37
38}
39
Note: See TracBrowser for help on using the repository browser.