Stacked Graphs
Geometry & Aesthetics
 All Classes Functions Variables Enumerations
namedobject.h
1 #ifndef NAMEDOBJECT_H
2 #define NAMEDOBJECT_H
3 
4 #include <QObject>
5 
10 {
11 public:
12  virtual ~INamedObject() {}
16  virtual QString GetName() = 0;
17 };
18 
19 Q_DECLARE_INTERFACE(INamedObject, "StackedGraphs.INamedObject")
20 
21 #endif // NAMEDOBJECT_H
virtual QString GetName()=0
Returns a user-presentable name for the object.
Interface for objects which have a name.
Definition: namedobject.h:9