/*
This software 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 General Public License for more details.
You should have received a copy of the GNU General Public License;
see the file COPYING.
If not, write to the Free Software Foundation, Inc.,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Copyright (C) 2010 Mahadevan Gorti Surya Srinivasa <sgorti@gmail.com>
*/
/** Mutable integer
*
* @author mahadevan.gss
*/
package org.jvcompress.util;
public class MInt {
public int v;
public MInt() {
}
}