
#ifndef __LOCATIONFILTER_H
#define __LOCATIONFILTER_H

#include <mapper/config.h>

#include <qtabwidget.h>
#include <qvbox.h>

namespace iwear
{
    namespace sensor
    {
	namespace location
	{

/**
 * This class is the upper left tab box where u can choose what to filter the
 * locations in the list (and displayed) for.
 */
class LocationFilter : public QVBox
{
    Q_OBJECT
private:
protected:
public:
    LocationFilter( QWidget* parent );
    virtual ~LocationFilter();
};

}
}
}
#endif

