main.java.com.mindprod.ledatastream.LEDataOutputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AndResGuard-core Show documentation
Show all versions of AndResGuard-core Show documentation
Android Resource Proguard Core Lib
The newest version!
/**
* Description:
* LEDataOutputStream.java Create on 2014-5-14
*
* @author shaowenzhang
* @version 1.0
* Copyright (c) 2014 Tecent WXG AndroidTeam. All Rights Reserved.
*/
package com.mindprod.ledatastream;
import java.io.OutputStream;
public class LEDataOutputStream extends LittleEndianDataOutputStream {
public LEDataOutputStream(OutputStream out) {
super(out);
// TODO Auto-generated constructor stub
}
}