aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/abstract.cpp
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2009-08-25 03:52:25 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2009-08-25 03:52:25 -0300
commit9d58de1bfc7e93606fb5582dd05eea185e9fe851 (patch)
tree10b195facb6e35749195d7f62576c965265791b1 /tests/libsample/abstract.cpp
parent2132a3eb82830d0719d19eaadb32e39222948bca (diff)
commented debug messages from test library
Diffstat (limited to 'tests/libsample/abstract.cpp')
-rw-r--r--tests/libsample/abstract.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/libsample/abstract.cpp b/tests/libsample/abstract.cpp
index 8b49f37f8..39ac0fdba 100644
--- a/tests/libsample/abstract.cpp
+++ b/tests/libsample/abstract.cpp
@@ -5,39 +5,39 @@ using namespace std;
Abstract::Abstract(int id) : m_id(id)
{
- cout << __PRETTY_FUNCTION__;
- show();
- cout << endl;
+ //cout << __PRETTY_FUNCTION__;
+ //show();
+ //cout << endl;
}
Abstract::~Abstract()
{
- cout << __PRETTY_FUNCTION__;
- show();
- cout << endl;
+ //cout << __PRETTY_FUNCTION__;
+ //show();
+ //cout << endl;
}
void
Abstract::unpureVirtual()
{
- cout << __PRETTY_FUNCTION__ << endl;
+ //cout << __PRETTY_FUNCTION__ << endl;
}
void
Abstract::callUnpureVirtual()
{
- cout << __PRETTY_FUNCTION__ << " --- BEGIN" << endl;
+ //cout << __PRETTY_FUNCTION__ << " --- BEGIN" << endl;
this->unpureVirtual();
- cout << __PRETTY_FUNCTION__ << " --- END" << endl;
+ //cout << __PRETTY_FUNCTION__ << " --- END" << endl;
}
void
Abstract::callPureVirtual()
{
- cout << __PRETTY_FUNCTION__ << " --- BEGIN" << endl;
+ //cout << __PRETTY_FUNCTION__ << " --- BEGIN" << endl;
this->pureVirtual();
- cout << __PRETTY_FUNCTION__ << " --- END" << endl;
+ //cout << __PRETTY_FUNCTION__ << " --- END" << endl;
}
void