BALL  1.4.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
inputDevPluginHandler.h
Go to the documentation of this file.
1 #ifndef BALL_VIEW_PLUGIN_INPUTDEVPLUGINHANDLER_H
2 #define BALL_VIEW_PLUGIN_INPUTDEVPLUGINHANDLER_H
3 
4 #ifndef BALL_PLUGIN_PLUGINHANDLER_H
6 #endif
7 
8 namespace BALL
9 {
10  class BALLPlugin;
11 
12  namespace VIEW
13  {
14 
19  {
20  public:
21  virtual bool canHandle(BALLPlugin* plugin) const;
22 
23  protected:
24  virtual bool specificSetup_(BALLPlugin* plugin);
25  virtual bool specificShutdown_(BALLPlugin* plugin);
26  };
27 
28  }
29 }
30 
31 #endif //BALL_VIEW_PLUGIN_INPUTDEVPLUGINHANDLER_H
32