OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
tagbase.hpp
Go to the documentation of this file.
1 #ifndef OPENCS_VIEW_TAGBASE_H
2 #define OPENCS_VIEW_TAGBASE_H
3 
4 #include <osg/Referenced>
5 
6 #include <QString>
7 
8 #include "mask.hpp"
9 
10 namespace CSVRender
11 {
12  class TagBase : public osg::Referenced
13  {
15 
16  public:
17 
18  TagBase (Mask mask);
19 
20  Mask getMask() const;
21 
22  virtual QString getToolTip (bool hideBasics) const;
23 
24  };
25 }
26 
27 #endif
Mask getMask() const
Definition: tagbase.cpp:6
Definition: tagbase.hpp:12
virtual QString getToolTip(bool hideBasics) const
Definition: tagbase.cpp:11
TagBase(Mask mask)
Definition: tagbase.cpp:4
Mask mMask
Definition: tagbase.hpp:14
Mask
Definition: mask.hpp:11