]> git.sesse.net Git - kdenlive/blobdiff - src/effectslist.h
Reindent all source files
[kdenlive] / src / effectslist.h
index affb686918ef3d903542d75e7f130f1e3a3707f2..3a16b835d5a094d25555094a5641376138f17146 100644 (file)
 #include <QList>
 
 /**An List for DocClipBase objects. Use this instead of QList<DocClipBase> so as to sort lists correctly.
      * Also contains the ability to set a "master clip", which can be used by a number of operations where
      * the need for one clip to act as a reference for what happens to all clips is needed.
+ * Also contains the ability to set a "master clip", which can be used by a number of operations where
+ * the need for one clip to act as a reference for what happens to all clips is needed.
   * @author Jason Wood
   */
 
 #include <QDomElement>
 
-class EffectsList:public QList < QDomElement > {
-  public:
+class EffectsList: public QList < QDomElement > {
+public:
     EffectsList();
-   ~EffectsList();
-       /** Returns an XML version of this Effect.*/
-  QDomElement getEffectByName(const QString & name);
-  QStringList effectNames();
-  QString getInfo(QString effectName);
-  QMap <QString, QString> effect(const QString & name);
+    ~EffectsList();
+    /** Returns an XML version of this Effect.*/
+    QDomElement getEffectByName(const QString & name);
+    QStringList effectNames();
+    QString getInfo(QString effectName);
+    QMap <QString, QString> effect(const QString & name);
 };
 
 #endif