16 lines
211 B
QML
16 lines
211 B
QML
|
pragma Strict
|
||
|
import QtQml
|
||
|
|
||
|
QtObject {
|
||
|
id: self
|
||
|
|
||
|
property var thing: self
|
||
|
|
||
|
function doThing() : bool {
|
||
|
if (self.thing)
|
||
|
return true;
|
||
|
else
|
||
|
return false;
|
||
|
}
|
||
|
}
|