All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lti.civil.impl.jni.Peered Maven / Gradle / Ivy

/*
 * Created on May 25, 2005
 */
package com.lti.civil.impl.jni;

/**
 * Base class, holds a native pointer to a peer object.
 * @author Ken Larson
 */
public class Peered
{
	private long peerPtr;	// use long to support 64-bit machines as well as 32
	
	public long getPeerPtr()
	{	return peerPtr;
	}

	public Peered(long ptr)
	{
		super();
		
		peerPtr = ptr;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy