|
FAUST compiler
0.9.9.6b8
|
#include <property.hh>

Public Member Functions | |
| property () | |
| property (const char *keyname) | |
| void | set (Tree t, Tree data) |
| bool | get (Tree t, Tree &data) |
| void | clear (Tree t) |
Private Attributes | |
| Tree | fKey |
Definition at line 52 of file property.hh.
Definition at line 60 of file property.hh.
Definition at line 78 of file property.hh.
References CTree::clearProperty(), and property< P >::fKey.
{
t->clearProperty(fKey);
}

Definition at line 67 of file property.hh.
References property< P >::fKey, and CTree::getProperty().
Referenced by a2sb(), boxSimplification(), symlist(), and symlistVisit().
{
Tree d = t->getProperty(fKey);
if (d) {
data = d;
return true;
} else {
return false;
}
}


Definition at line 62 of file property.hh.
References property< P >::fKey, and CTree::setProperty().
Referenced by a2sb(), boxSimplification(), and symlist().
{
t->setProperty(fKey, data);
}


1.8.0