/**
* TroveP5 is a wrapper for the java library Trove,
* useful to use primitive types like int or float with collections like ArrayLists.
*
* ##copyright##
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA
*
* @author Tim Pulver
* @modified 2012-07-13
* @version 1.0
*/
package com.powder;
/**
* This is a template class and can be used to start a new processing library or tool.
* Make sure you rename this class as well as the name of the example package 'template'
* to your own lobrary or tool naming convention.
*
* @example Hello
*
* (the tag @example followed by the name of an example included in folder 'examples' will
* automatically include the example in the javadoc.)
*
*/
public class TroveP5 {
public final static String VERSION = "##version##";
public final static String TROVE_VERSION = "3.0.3";
/**
* return the version of the library.
*
* @return String
*/
public static String version() {
return VERSION;
}
/**
* return the version of the underlying trove library.
*
* @return String
*/
public static String troveVersion() {
return TROVE_VERSION;
}
}