
#include <filteroptions.h>
#include <qlabel.h>

namespace iwear
{
    namespace sensor
    {
	namespace location
	{
FilterOptions::FilterOptions( QWidget* parent )
    : QTabWidget ( parent )
{
    setup();
}

void FilterOptions::setup( void )
{
    d_lf = new LocationFilter(this);
//    (void)new QLabel( "Filename1:", d_lf);
    addTab(d_lf,"Tab1");

    d_lf = new LocationFilter(this);
//    (void)new QLabel( "Filename2:", d_lf);
    addTab(d_lf,"Tab2");
//    setTabPosition( QTabWidget::Bottom );
}

FilterOptions::~FilterOptions()
{
}

}
}
}
