1192532Sraj/*
2192532Sraj * Copyright 2017, Haiku, Inc. All Rights Reserved.
3192532Sraj * Distributed under the terms of the MIT License.
4192532Sraj */
5192532Sraj#ifndef _APP_REF_FILTER_H
6192532Sraj#define _APP_REF_FILTER_H
7192532Sraj
8192532Sraj#include <FilePanel.h>
9192532Sraj#include <NodeInfo.h>
10192532Sraj
11192532Sraj
12192532Srajclass AppRefFilter : public BRefFilter {
13192532Srajpublic:
14192532Sraj						AppRefFilter();
15192532Sraj	virtual bool		Filter(const entry_ref *ref,
16192532Sraj							BNode *node,
17192532Sraj							struct stat_beos *st,
18192532Sraj							const char *filetype);
19192532Sraj};
20192532Sraj
21192532Sraj#endif // _APP_REF_FILTER_H
22192532Sraj