xref: /haiku/src/preferences/notifications/AppRefFilter.h (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2  * Copyright 2017, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _APP_REF_FILTER_H
6 #define _APP_REF_FILTER_H
7 
8 #include <FilePanel.h>
9 #include <NodeInfo.h>
10 
11 
12 class AppRefFilter : public BRefFilter {
13 public:
14 						AppRefFilter();
15 	virtual bool		Filter(const entry_ref *ref,
16 							BNode *node,
17 							struct stat_beos *st,
18 							const char *filetype);
19 };
20 
21 #endif // _APP_REF_FILTER_H
22