moc_httpsessionstore.cpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /****************************************************************************
  2. ** Meta object code from reading C++ file 'httpsessionstore.h'
  3. **
  4. ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.2)
  5. **
  6. ** WARNING! All changes made in this file will be lost!
  7. *****************************************************************************/
  8. #include "../../httpserver/httpsessionstore.h"
  9. #include <QtCore/qbytearray.h>
  10. #include <QtCore/qmetatype.h>
  11. #if !defined(Q_MOC_OUTPUT_REVISION)
  12. #error "The header file 'httpsessionstore.h' doesn't include <QObject>."
  13. #elif Q_MOC_OUTPUT_REVISION != 67
  14. #error "This file was generated using the moc from 5.3.2. It"
  15. #error "cannot be used with the include files from this version of Qt."
  16. #error "(The moc has changed too much.)"
  17. #endif
  18. QT_BEGIN_MOC_NAMESPACE
  19. struct qt_meta_stringdata_stefanfrings__HttpSessionStore_t {
  20. QByteArrayData data[5];
  21. char stringdata[75];
  22. };
  23. #define QT_MOC_LITERAL(idx, ofs, len) \
  24. Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
  25. qptrdiff(offsetof(qt_meta_stringdata_stefanfrings__HttpSessionStore_t, stringdata) + ofs \
  26. - idx * sizeof(QByteArrayData)) \
  27. )
  28. static const qt_meta_stringdata_stefanfrings__HttpSessionStore_t qt_meta_stringdata_stefanfrings__HttpSessionStore = {
  29. {
  30. QT_MOC_LITERAL(0, 0, 30),
  31. QT_MOC_LITERAL(1, 31, 14),
  32. QT_MOC_LITERAL(2, 46, 0),
  33. QT_MOC_LITERAL(3, 47, 9),
  34. QT_MOC_LITERAL(4, 57, 17)
  35. },
  36. "stefanfrings::HttpSessionStore\0"
  37. "sessionDeleted\0\0sessionId\0sessionTimerEvent"
  38. };
  39. #undef QT_MOC_LITERAL
  40. static const uint qt_meta_data_stefanfrings__HttpSessionStore[] = {
  41. // content:
  42. 7, // revision
  43. 0, // classname
  44. 0, 0, // classinfo
  45. 2, 14, // methods
  46. 0, 0, // properties
  47. 0, 0, // enums/sets
  48. 0, 0, // constructors
  49. 0, // flags
  50. 1, // signalCount
  51. // signals: name, argc, parameters, tag, flags
  52. 1, 1, 24, 2, 0x06 /* Public */,
  53. // slots: name, argc, parameters, tag, flags
  54. 4, 0, 27, 2, 0x08 /* Private */,
  55. // signals: parameters
  56. QMetaType::Void, QMetaType::QByteArray, 3,
  57. // slots: parameters
  58. QMetaType::Void,
  59. 0 // eod
  60. };
  61. void stefanfrings::HttpSessionStore::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
  62. {
  63. if (_c == QMetaObject::InvokeMetaMethod) {
  64. HttpSessionStore *_t = static_cast<HttpSessionStore *>(_o);
  65. switch (_id) {
  66. case 0: _t->sessionDeleted((*reinterpret_cast< const QByteArray(*)>(_a[1]))); break;
  67. case 1: _t->sessionTimerEvent(); break;
  68. default: ;
  69. }
  70. } else if (_c == QMetaObject::IndexOfMethod) {
  71. int *result = reinterpret_cast<int *>(_a[0]);
  72. void **func = reinterpret_cast<void **>(_a[1]);
  73. {
  74. typedef void (HttpSessionStore::*_t)(const QByteArray & );
  75. if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&HttpSessionStore::sessionDeleted)) {
  76. *result = 0;
  77. }
  78. }
  79. }
  80. }
  81. const QMetaObject stefanfrings::HttpSessionStore::staticMetaObject = {
  82. { &QObject::staticMetaObject, qt_meta_stringdata_stefanfrings__HttpSessionStore.data,
  83. qt_meta_data_stefanfrings__HttpSessionStore, qt_static_metacall, 0, 0}
  84. };
  85. const QMetaObject *stefanfrings::HttpSessionStore::metaObject() const
  86. {
  87. return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
  88. }
  89. void *stefanfrings::HttpSessionStore::qt_metacast(const char *_clname)
  90. {
  91. if (!_clname) return 0;
  92. if (!strcmp(_clname, qt_meta_stringdata_stefanfrings__HttpSessionStore.stringdata))
  93. return static_cast<void*>(const_cast< HttpSessionStore*>(this));
  94. return QObject::qt_metacast(_clname);
  95. }
  96. int stefanfrings::HttpSessionStore::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
  97. {
  98. _id = QObject::qt_metacall(_c, _id, _a);
  99. if (_id < 0)
  100. return _id;
  101. if (_c == QMetaObject::InvokeMetaMethod) {
  102. if (_id < 2)
  103. qt_static_metacall(this, _c, _id, _a);
  104. _id -= 2;
  105. } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
  106. if (_id < 2)
  107. *reinterpret_cast<int*>(_a[0]) = -1;
  108. _id -= 2;
  109. }
  110. return _id;
  111. }
  112. // SIGNAL 0
  113. void stefanfrings::HttpSessionStore::sessionDeleted(const QByteArray & _t1)
  114. {
  115. void *_a[] = { 0, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
  116. QMetaObject::activate(this, &staticMetaObject, 0, _a);
  117. }
  118. QT_END_MOC_NAMESPACE