OpenCOVER
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
coCollabInterface.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
21 #ifndef CO_COLLAB_INTERFACE_H
22 #define CO_COLLAB_INTERFACE_H
23 
25 
26 namespace opencover
27 {
28 class coVRPlugin;
30 class COVEREXPORT coCOIM : public vrui::vruiCOIM
31 {
32 public:
33  coCOIM(coVRPlugin *);
34  virtual ~coCOIM();
35  coVRPlugin *getPlugin();
36  void setPlugin(coVRPlugin *);
37 
38 private:
39  coVRPlugin *myPlugin;
40 };
41 }
42 #endif
Definition: vruiCollabInterface.h:27
make sure to clean up properly in the plugin's dtor
Definition: coVRPlugin.h:70
collaborative interface manager
Definition: coCollabInterface.h:30