- globalScope> Member TTGetRegisteredClassNames (TTValue &classNames)
- Instead, please use
TTObject::GetRegisteredClassNames
- globalScope> Member TTGetRegisteredClassNamesForTags (TTValue &classNames, const TTValue &searchTags)
- Instead, please use
TTObject::GetRegisteredClassNamesForTags
- globalScope> Member TTObjectBaseInstantiate (const TTSymbol className, TTObjectBasePtr *returnedObjectPtr, const TTValue arguments)
- Instead, please use the
TTObject constructor as detailed in Object Life Cycle
- globalScope> Member TTObjectBaseReference (TTObjectBasePtr anObject)
- Instead, most uses can be handled via the
TTObject and its = operator
- globalScope> Member TTObjectBaseRelease (TTObjectBasePtr *anObject)
- Instead, please use the
TTObject destructor via the delete operator as detailed in Object Life Cycle
- Member TTValue::get (const TTUInt16 index, T &returnedElementValue) const
instead, please fetch the value of an element using standard C array syntax.
- Member TTValue::getSize () const
- instead, please call the size() method
- Member TTValue::getType (const TTUInt16 index=0) const
instead, please call TTElement::type() on the element itself.
- Member TTValue::getUInt8 (TTUInt16 index=0) const
- inlined function formerly used by TTMatrix or Jamoma Foundation DataspaceLib
- Member TTValue::set (const TTUInt16 index, const T &anElementValue)
instead, please make an assignment using standard C array syntax.
- Member TTValue::setSize (const TTUInt16 arg)
- instead, please call the resize() method