ocarina/include/gui/filter.h

18 lines
384 B
C
Raw Normal View History

/*
* Copyright 2016 (c) Anna Schumaker.
*/
#ifndef OCARINA_GUI_FILTER_H
#define OCARINA_GUI_FILTER_H
#include <gui/builder.h>
/* Called to initialize the filter model. */
void gui_filter_init();
/* Called to deinitialize the filter model. */
void gui_filter_deinit();
/* Called to get the filter model. */
GtkTreeModelFilter *gui_filter_get();
#endif /* OCARINA_GUI_FILTER_H */