#ifndef IWEAR_DEBUG
#define IWEAR_DEBUG
#endif

#include <iostream>
#include <string>
#include <iwear/scopetracer.h>
#include <iwear/debugstream.h>

using std::cerr;
using std::endl;
using std::string;
using namespace iwear;

int main()
{
    d_err.set_debuglevel(nonsens);
    int i = 0;
    string foobar("ARGH");
    TRACE_SCOPE(i,foobar,"ARHG");
    TRACE_SCOPE();
//    ScopeTracer st1(__FFL__, "Test",i,foobar);
  //  ScopeTracer st2(__FFL__, "Test",i,foobar);	
//    ScopeTracer st3(__FFL__, "Test",i,foobar);	
    std::cout << "foobar" << std::endl;
}
