QtGStreamer  0.10.2
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
miniobject.h
1 /*
2  Copyright (C) 2009-2010 George Kiagiadakis <kiagiadakis.george@gmail.com>
3 
4  This library is free software; you can redistribute it and/or modify
5  it under the terms of the GNU Lesser General Public License as published
6  by the Free Software Foundation; either version 2.1 of the License, or
7  (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU Lesser General Public License for more details.
13 
14  You should have received a copy of the GNU Lesser General Public License
15  along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17 #ifndef QGST_MINIOBJECT_H
18 #define QGST_MINIOBJECT_H
19 
20 #include "global.h"
21 #include "../QGlib/refpointer.h"
22 #include "../QGlib/type.h"
23 
24 namespace QGst {
25 
29 class QTGSTREAMER_EXPORT MiniObject : public QGlib::RefCountedObject
30 {
31  QGST_WRAPPER(MiniObject)
32 public:
33  MiniObjectPtr copy() const;
34  bool isWritable() const;
35  MiniObjectPtr makeWritable() const;
36 
37 protected:
38  virtual void ref(bool increaseRef);
39  virtual void unref();
40 };
41 
42 
43 namespace Private {
44 
45 QTGSTREAMER_EXPORT QGlib::RefCountedObject *wrapMiniObject(void *miniObject);
46 
47 } //namespace Private
48 } //namespace QGst
49 
50 QGST_REGISTER_TYPE(QGst::MiniObject)
51 QGLIB_REGISTER_WRAPIMPL_FOR_SUBCLASSES_OF(QGst::MiniObject, QGst::Private::wrapMiniObject)
52 
53 #endif