OpenCOVER
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
coLabelMenuItem.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 
8 #ifndef CO_LABELMENUITEM_H
9 #define CO_LABELMENUITEM_H
10 
11 #include <OpenVRUI/coRowMenuItem.h>
12 
13 #include <string>
14 
18 namespace vrui
19 {
20 
21 class OPENVRUIEXPORT coLabelMenuItem : public coRowMenuItem
22 {
23 public:
24  coLabelMenuItem(const std::string &);
25  virtual ~coLabelMenuItem();
26 
28  virtual const char *getClassName() const;
30  virtual bool isOfClassName(const char *) const;
31 };
32 }
33 #endif
Definition: coLabelMenuItem.h:21
Definition: coRowMenuItem.h:30