annotate org/vamp_plugins/RealTime.java @ 2:d0ecf12b9d7b

Add the rest of the Plugin methods to the Java class
author Chris Cannam
date Wed, 18 Jan 2012 09:35:22 +0000
parents
children 9c108ad04e9b
rev   line source
Chris@2 1
Chris@2 2 package org.vamp_plugins;
Chris@2 3
Chris@2 4 public class RealTime {
Chris@2 5 public int sec;
Chris@2 6 public int nsec;
Chris@2 7
Chris@2 8 RealTime(int s, int n) { sec = s; nsec = n; }
Chris@2 9 }
Chris@2 10