Skip to content
Snippets Groups Projects
Commit 55347c11 authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Removed redundant inline qualifiers

parent 52d46956
No related branches found
No related tags found
No related merge requests found
......@@ -32,19 +32,15 @@ class IPathTranslator;
class SessionTagInfo
{
public:
inline SessionTagInfo() : name(QString()), min(0), max(-1), childCount(0) {}
inline SessionTagInfo(QString n, int mi, int ma, QStringList mt = QStringList())
:name(n)
, min(mi)
, max(ma)
, childCount(0)
, modelTypes(mt) {}
SessionTagInfo() : name(QString()), min(0), max(-1), childCount(0) {}
SessionTagInfo(QString n, int mi, int ma, QStringList mt = QStringList())
:name(n), min(mi), max(ma), childCount(0), modelTypes(mt) {}
bool isValid() { return !name.isEmpty(); }
QString name;
int min;
int max;
int childCount;
QStringList modelTypes;
inline bool isValid() { return !name.isEmpty(); }
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment