update [lua bindings] documentation
This commit is contained in:
parent
5e0f0fc9f2
commit
4f3f966276
@ -30,15 +30,15 @@
|
||||
|
||||
namespace ARDOUR { namespace LuaAPI {
|
||||
|
||||
/** convenience contructor for DataType::NIL
|
||||
/** convenience constructor for DataType::NIL with managed lifetime
|
||||
* @returns DataType::NIL
|
||||
*/
|
||||
int datatype_ctor_null (lua_State *lua);
|
||||
/** convenience contructor for DataType::AUDIO
|
||||
/** convenience constructor for DataType::AUDIO with managed lifetime
|
||||
* @returns DataType::AUDIO
|
||||
*/
|
||||
int datatype_ctor_audio (lua_State *L);
|
||||
/** convenience contructor for DataType::MIDI
|
||||
/** convenience constructor for DataType::MIDI with managed lifetime
|
||||
* @returns DataType::MIDI
|
||||
*/
|
||||
int datatype_ctor_midi (lua_State *L);
|
||||
|
@ -55,6 +55,13 @@ class Track;
|
||||
class AudioTrack;
|
||||
class Session;
|
||||
|
||||
/** A group identifier for routes.
|
||||
*
|
||||
* RouteGroups permit to define properties which are shared
|
||||
* among all Routes that use the given identifier.
|
||||
*
|
||||
* A route can at most be in one group.
|
||||
*/
|
||||
class LIBARDOUR_API RouteGroup : public SessionObject
|
||||
{
|
||||
public:
|
||||
|
@ -497,9 +497,6 @@ LuaBindings::common (lua_State* L)
|
||||
.addFunction ("n_ports", &IO::n_ports)
|
||||
.endClass ()
|
||||
|
||||
.deriveWSPtrClass <RouteGroup, SessionObject> ("RouteGroupPtr")
|
||||
.endClass ()
|
||||
|
||||
.beginClass <RouteGroup> ("RouteGroup")
|
||||
// stub RouteGroup* is needed for new_audio_track()
|
||||
.endClass ()
|
||||
|
Loading…
Reference in New Issue
Block a user