1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
/****************************************************************************
** PulseDevice meta object code from reading C++ file 'standard input'
**
** Created by: The TQt Meta Object Compiler version 26 (TQt 3.5.0)
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#undef TQT_NO_COMPAT
#include "/home/calvin/tmix/src/model/pulsedevice.h"
#include <ntqmetaobject.h>
#include <ntqapplication.h>
#include <private/qucomextra_p.h>
#if !defined(Q_MOC_OUTPUT_REVISION) || (Q_MOC_OUTPUT_REVISION != 26)
#error "This file was generated using the moc from 3.5.0. It"
#error "cannot be used with the include files from this version of TQt."
#error "(The moc has changed too much.)"
#endif
const char *PulseDevice::className() const
{
return "PulseDevice";
}
TQMetaObject *PulseDevice::metaObj = 0;
static TQMetaObjectCleanUp cleanUp_PulseDevice( "PulseDevice", &PulseDevice::staticMetaObject );
#ifndef TQT_NO_TRANSLATION
TQString PulseDevice::tr( const char *s, const char *c )
{
if ( tqApp )
return tqApp->translate( "PulseDevice", s, c, TQApplication::DefaultCodec );
else
return TQString::fromLatin1( s );
}
#ifndef TQT_NO_TRANSLATION_UTF8
TQString PulseDevice::trUtf8( const char *s, const char *c )
{
if ( tqApp )
return tqApp->translate( "PulseDevice", s, c, TQApplication::UnicodeUTF8 );
else
return TQString::fromUtf8( s );
}
#endif // TQT_NO_TRANSLATION_UTF8
#endif // TQT_NO_TRANSLATION
TQMetaObject* PulseDevice::staticMetaObject()
{
if ( metaObj ) {
return metaObj;
}
#ifdef TQT_THREAD_SUPPORT
if (tqt_sharedMetaObjectMutex) tqt_sharedMetaObjectMutex->lock();
if ( metaObj ) {
if (tqt_sharedMetaObjectMutex) tqt_sharedMetaObjectMutex->unlock();
return metaObj;
}
#endif // TQT_THREAD_SUPPORT
TQMetaObject* parentObject = AudioDevice::staticMetaObject();
metaObj = TQMetaObject::new_metaobject(
"PulseDevice", parentObject,
0, 0,
0, 0,
#ifndef TQT_NO_PROPERTIES
0, 0,
0, 0,
#endif // TQT_NO_PROPERTIES
0, 0 );
cleanUp_PulseDevice.setMetaObject( metaObj );
#ifdef TQT_THREAD_SUPPORT
if (tqt_sharedMetaObjectMutex) tqt_sharedMetaObjectMutex->unlock();
#endif // TQT_THREAD_SUPPORT
return metaObj;
}
void* PulseDevice::tqt_cast( const char* clname )
{
if ( !qstrcmp( clname, "PulseDevice" ) )
return this;
return AudioDevice::tqt_cast( clname );
}
bool PulseDevice::tqt_invoke( int _id, TQUObject* _o )
{
return AudioDevice::tqt_invoke(_id,_o);
}
bool PulseDevice::tqt_emit( int _id, TQUObject* _o )
{
return AudioDevice::tqt_emit(_id,_o);
}
#ifndef TQT_NO_PROPERTIES
bool PulseDevice::tqt_property( int id, int f, TQVariant* v)
{
return AudioDevice::tqt_property( id, f, v);
}
bool PulseDevice::tqt_static_property( TQObject* , int , int , TQVariant* ){ return false; }
#endif // TQT_NO_PROPERTIES
|