added missing virtual destructor fixed a warning in token.h: expression with side effects will be evaluated despite being used as an operand to 'typeid' CMP00043 Cmake warning added missing override keyword
15 lines
334 B
C++
15 lines
334 B
C++
#ifndef GRAPH_VIEW_STYLE_IMPL_H
|
|
#define GRAPH_VIEW_STYLE_IMPL_H
|
|
|
|
#include "data/graph/Node.h"
|
|
|
|
class GraphViewStyleImpl
|
|
{
|
|
public:
|
|
virtual ~GraphViewStyleImpl() { }
|
|
virtual float getCharWidthForNodeType(Node::NodeType type) = 0;
|
|
virtual float getCharHeightForNodeType(Node::NodeType type) = 0;
|
|
};
|
|
|
|
#endif // GRAPH_VIEW_STYLE_IMPL_H
|