#include <typeinfo>
#include <iostream.h>
#include "ORBacustest_impl.h"

ORBacustestImpl :: ORBacustestImpl(void)
    : _counter(0)
{
    return;
}

void ORBacustestImpl :: test(void)
{
    _counter++;
    cout << "Counter = " << _counter << endl;
    return;
}
