rahulch

Untitled

Sep 23rd, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /****************************************************************************
  2. ** Meta object code from reading C++ file 'videofilterrunnable.h'
  3. **
  4. ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.5)
  5. **
  6. ** WARNING! All changes made in this file will be lost!
  7. *****************************************************************************/
  8.  
  9. #include "../../src/videofilterrunnable.h"
  10. #include <QtCore/qbytearray.h>
  11. #include <QtCore/qmetatype.h>
  12. #if !defined(Q_MOC_OUTPUT_REVISION)
  13. #error "The header file 'videofilterrunnable.h' doesn't include <QObject>."
  14. #elif Q_MOC_OUTPUT_REVISION != 67
  15. #error "This file was generated using the moc from 5.12.5. It"
  16. #error "cannot be used with the include files from this version of Qt."
  17. #error "(The moc has changed too much.)"
  18. #endif
  19.  
  20. QT_BEGIN_MOC_NAMESPACE
  21. QT_WARNING_PUSH
  22. QT_WARNING_DISABLE_DEPRECATED
  23. struct qt_meta_stringdata_VideoFilterRunnable_t {
  24.     QByteArrayData data[4];
  25.     char stringdata0[37];
  26. };
  27. #define QT_MOC_LITERAL(idx, ofs, len) \
  28.     Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
  29.     qptrdiff(offsetof(qt_meta_stringdata_VideoFilterRunnable_t, stringdata0) + ofs \
  30.         - idx * sizeof(QByteArrayData)) \
  31.     )
  32. static const qt_meta_stringdata_VideoFilterRunnable_t qt_meta_stringdata_VideoFilterRunnable = {
  33.     {
  34. QT_MOC_LITERAL(0, 0, 19), // "VideoFilterRunnable"
  35. QT_MOC_LITERAL(1, 20, 8), // "finished"
  36. QT_MOC_LITERAL(2, 29, 0), // ""
  37. QT_MOC_LITERAL(3, 30, 6) // "result"
  38.  
  39.     },
  40.     "VideoFilterRunnable\0finished\0\0result"
  41. };
  42. #undef QT_MOC_LITERAL
  43.  
  44. static const uint qt_meta_data_VideoFilterRunnable[] = {
  45.  
  46.  // content:
  47.        8,       // revision
  48.        0,       // classname
  49.        0,    0, // classinfo
  50.        1,   14, // methods
  51.        0,    0, // properties
  52.        0,    0, // enums/sets
  53.        0,    0, // constructors
  54.        0,       // flags
  55.        1,       // signalCount
  56.  
  57.  // signals: name, argc, parameters, tag, flags
  58.        1,    1,   19,    2, 0x06 /* Public */,
  59.  
  60.  // signals: parameters
  61.     QMetaType::Void, QMetaType::QObjectStar,    3,
  62.  
  63.        0        // eod
  64. };
  65.  
  66. void VideoFilterRunnable::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
  67. {
  68.     if (_c == QMetaObject::InvokeMetaMethod) {
  69.         auto *_t = static_cast<VideoFilterRunnable *>(_o);
  70.         Q_UNUSED(_t)
  71.         switch (_id) {
  72.         case 0: _t->finished((*reinterpret_cast< QObject*(*)>(_a[1]))); break;
  73.         default: ;
  74.         }
  75.     } else if (_c == QMetaObject::IndexOfMethod) {
  76.         int *result = reinterpret_cast<int *>(_a[0]);
  77.         {
  78.             using _t = void (VideoFilterRunnable::*)(QObject * );
  79.             if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&VideoFilterRunnable::finished)) {
  80.                 *result = 0;
  81.                 return;
  82.             }
  83.         }
  84.     }
  85. }
  86.  
  87. QT_INIT_METAOBJECT const QMetaObject VideoFilterRunnable::staticMetaObject = { {
  88.     &QVideoFilterRunnable::staticMetaObject,
  89.     qt_meta_stringdata_VideoFilterRunnable.data,
  90.     qt_meta_data_VideoFilterRunnable,
  91.     qt_static_metacall,
  92.     nullptr,
  93.     nullptr
  94. } };
  95.  
  96.  
  97. const QMetaObject *VideoFilterRunnable::metaObject() const
  98. {
  99.     return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
  100. }
  101.  
  102. void *VideoFilterRunnable::qt_metacast(const char *_clname)
  103. {
  104.     if (!_clname) return nullptr;
  105.     if (!strcmp(_clname, qt_meta_stringdata_VideoFilterRunnable.stringdata0))
  106.         return static_cast<void*>(this);
  107.     if (!strcmp(_clname, "QObject"))
  108.         return static_cast< QObject*>(this);
  109.     return QVideoFilterRunnable::qt_metacast(_clname);
  110. }
  111.  
  112. int VideoFilterRunnable::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
  113. {
  114.     _id = QVideoFilterRunnable::qt_metacall(_c, _id, _a);
  115.     if (_id < 0)
  116.         return _id;
  117.     if (_c == QMetaObject::InvokeMetaMethod) {
  118.         if (_id < 1)
  119.             qt_static_metacall(this, _c, _id, _a);
  120.         _id -= 1;
  121.     } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
  122.         if (_id < 1)
  123.             *reinterpret_cast<int*>(_a[0]) = -1;
  124.         _id -= 1;
  125.     }
  126.     return _id;
  127. }
  128.  
  129. // SIGNAL 0
  130. void VideoFilterRunnable::finished(QObject * _t1)
  131. {
  132.     void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
  133.     QMetaObject::activate(this, &staticMetaObject, 0, _a);
  134. }
  135. QT_WARNING_POP
  136. QT_END_MOC_NAMESPACE
Add Comment
Please, Sign In to add comment