blob: 118fab9b70fc01679f5862847a6e1f2508b2f248 (
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
|
// $Id$
#include "TestAppBase.h"
TestAppBase::TestAppBase(const char* name)
: name_(name)
{
}
TestAppBase::~TestAppBase()
{
}
const char*
TestAppBase::name() const
{
return this->name_.c_str();
}
int
TestAppBase::run(int argc, char* argv[] ACE_ENV_ARG_DECL)
{
int rc = this->run_i(argc, argv ACE_ENV_ARG_PARAMETER);
// Convert 1 to 0. Leave 0 and -1 as they are.
return (rc == 1) ? 0 : rc;
}
|