1/*
2 * Copyright 2014 Haiku, Inc. All rights reserved
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _SWITCH_WORKSPACE_INPUT_FILTER_H
6#define _SWITCH_WORKSPACE_INPUT_FILTER_H
7
8
9#include <InputServerFilter.h>
10
11
12extern "C" _EXPORT BInputServerFilter* instantiate_input_filter();
13
14
15class SwitchWorkspaceInputFilter : public BInputServerFilter {
16public:
17								SwitchWorkspaceInputFilter();
18
19	virtual	filter_result		Filter(BMessage* message, BList* _list);
20	virtual	status_t			InitCheck();
21};
22
23
24#endif // _SWITCH_WORKSPACE_INPUT_FILTER_H
25