set eol-style to native

This commit is contained in:
Guenter Obiltschnig
2006-10-23 15:42:49 +00:00
parent 70cd05fde3
commit 727688af3e
50 changed files with 5277 additions and 5277 deletions

View File

@@ -1,43 +1,43 @@
//
// TestDecorator.cpp
//
// $Id: //poco/1.2/CppUnit/src/TestDecorator.cpp#1 $
//
#include "CppUnit/TestDecorator.h"
namespace CppUnit {
TestDecorator::TestDecorator(Test* test)
{
_test = test;
}
TestDecorator::~TestDecorator()
{
}
int TestDecorator::countTestCases()
{
return _test->countTestCases();
}
void TestDecorator::run(TestResult* result)
{
_test->run(result);
}
std::string TestDecorator::toString()
{
return _test->toString();
}
} // namespace CppUnit
//
// TestDecorator.cpp
//
// $Id: //poco/1.2/CppUnit/src/TestDecorator.cpp#1 $
//
#include "CppUnit/TestDecorator.h"
namespace CppUnit {
TestDecorator::TestDecorator(Test* test)
{
_test = test;
}
TestDecorator::~TestDecorator()
{
}
int TestDecorator::countTestCases()
{
return _test->countTestCases();
}
void TestDecorator::run(TestResult* result)
{
_test->run(result);
}
std::string TestDecorator::toString()
{
return _test->toString();
}
} // namespace CppUnit