LPTimeSig explanation of what LPTimeSig is and/or does
Inherits from: Object : LPObj
More detailed prose description of LPTimeSig.
See also: Object [some other help files]
Some Important Issues Regarding LPTimeSig (optional)
Explanation of the issues. For more information see Nil and [some other help files].
Creation / Class Methods
*new (upper, lower)
Short prose description of method.
upper - Explanation of upper. Default value is nil. Other information.
lower - Explanation of lower. Default value is nil. Other information.
// inline example
g = LPTimeSig.new;
g.doSomething; // explanation
g.cleanUpMethod;
Accessing Instance and Class Variables
Doing Some Task (optional)
A short bit of prose explaining something about the task.
initLPTimeSig
Short prose description of method.
// inline example
g = LPTimeSig.initLPTimeSig;
g.doSomething; // explanation
g.cleanUpMethod;
sig
Short prose description of method.
// inline example
g = LPTimeSig.sig;
g.doSomething; // explanation
g.cleanUpMethod;
Examples
// what this example does
e = LPTimeSig.new;
e.instanceMethod(someObject);
e.cleanUp;
...