view org/vamp_plugins/Feature.java @ 21:0a91d898acc3

Finish implementation of RealTime; add dispose() calls
author Chris Cannam
date Thu, 09 Feb 2012 16:18:33 +0000
parents 530bf5009ee2
children f2914a92b553
line wrap: on
line source

package org.vamp_plugins;

public class Feature {
    public boolean hasTimestamp;
    public RealTime timestamp;
    public boolean hasDuration;
    public RealTime duration;
    public float[] values;
    public String label;
    Feature() {
	hasTimestamp = false; hasDuration = false;
    }
};