00001 #pragma once 00002 00003 // QStreamer 00004 // A GStreamer replacement for Qt. 00005 // 00006 // Authors : 00007 // Darren R. Starr <submux at gmail dot com> 00008 // 00009 // Copyright : 2010 The QStreamer Project 00010 // License : BSD (until we're informed that we're in violation of some other license) 00011 // Donations : Appreciated and possible through SourceForge donation page. 00012 // 00013 // All code included in this project can be used freely in whatever way the user feels fit. 00014 // If you want to take it, close it and be a weasel that doesn't even contribute back patches, 00015 // so be it. Patches are however appreciated. Wrappers for other open source components are 00016 // also appreciated. 00017 // 00018 // If you wish to be nice to us so we can see how our code is being used. Drop us a mail and let us 00019 // know you're using it in your project. 00020 // 00021 // Support : By default the support is "you get what you pay for". Paid nothing, there's no implied 00022 // requirement to support you. On the other hand, some project developers are likely to 00023 // make fixes, changes, features on request or contract. 00024 // 00025 // Enjoy 00026 00027 #include <QtCore/QList> 00028 00029 namespace QStreamer 00030 { 00031 class QElementList 00032 { 00033 friend class QElement; 00034 friend class QPipeline; 00035 00036 public: 00037 QElementList(); 00038 00039 ~QElementList(); 00040 00041 qint32 count() const; 00042 00043 QElement *operator[](int index); 00044 00045 const QElement *operator[](int index) const; 00046 00047 protected: 00048 bool add(QElement *element); 00049 00050 bool remove(QElement *element); 00051 00052 QElement *takeFirst(); 00053 00054 private: 00055 QList<QElement *> m_elements; 00056 }; 00057 }