Mercurial > hg > svcore
comparison transform/Transform.h @ 1138:a2dbedc0cfee
Make it possible to report that a transform is of unknown type (e.g. invalid transform id, user mixed up filename and transform id, etc)
author | Chris Cannam |
---|---|
date | Tue, 03 Nov 2015 11:34:07 +0000 |
parents | 26cf6d5251ec |
children | d094598f84bd |
comparison
equal
deleted
inserted
replaced
1129:1cc96e03a903 | 1138:a2dbedc0cfee |
---|---|
65 bool operator<(const Transform &) const; | 65 bool operator<(const Transform &) const; |
66 | 66 |
67 void setIdentifier(TransformId id); | 67 void setIdentifier(TransformId id); |
68 TransformId getIdentifier() const; | 68 TransformId getIdentifier() const; |
69 | 69 |
70 enum Type { FeatureExtraction, RealTimeEffect }; | 70 enum Type { FeatureExtraction, RealTimeEffect, UnknownType }; |
71 | 71 |
72 Type getType() const; | 72 Type getType() const; |
73 QString getPluginIdentifier() const; | 73 QString getPluginIdentifier() const; |
74 QString getOutput() const; | 74 QString getOutput() const; |
75 | 75 |