OpenCOVER
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
12
13#include <string>
14
18namespace vrui
19{
20
21class OPENVRUIEXPORT coLabelMenuItem : public coRowMenuItem
22{
23public:
24 coLabelMenuItem(const std::string &);
26
28 virtual const char *getClassName() const;
30 virtual bool isOfClassName(const char *) const;
31};
32}
33#endif
collaborative interface manager
Definition: coVRCommunication.h:41
Definition: coLabelMenuItem.h:22
coLabelMenuItem(const std::string &)
virtual const char * getClassName() const
get the Element's classname
virtual bool isOfClassName(const char *) const
check if the Element or any ancestor is this classname
virtual ~coLabelMenuItem()
Definition: coRowMenuItem.h:31