/*******************************************************************************
* This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* Peter Smith
*******************************************************************************/
package org.boris.pecoff4j.util;
import java.io.File;
import org.boris.pecoff4j.PE;
import org.boris.pecoff4j.io.PEParser;
public class ResourceStripper
{
public static void remove(File pecoff, File output) throws Exception {
PE pe = PEParser.parse(pecoff);
}
}