You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
adept/adept/libadept/filtersidebar.h

28 lines
512 B

/* -*- C++ -*- file adept/filtersidebar.h
written by Peter Rockai <me@mornfall.net> */
#include <adept/filtersidebarui.h>
#include <adept/lister.h>
#ifndef EPT_FILTERSIDEBAR_H
#define EPT_FILTERSIDEBAR_H
namespace adept {
// using namespace aptFront;
class FilterSidebar : public FilterSidebarUi {
Q_OBJECT
public:
FilterSidebar( TQWidget *p = 0, const char *n = 0 )
: FilterSidebarUi( p, n )
{}
public slots:
void setCardinality( const Lister::Cardinality & );
};
}
#endif