/*
 * This software is released under a licence similar to the Apache Software Licence.
 * See org.logicalcobwebs.proxool.package.html for details.
 * The latest version is available at http://proxool.sourceforge.net
 */
package org.logicalcobwebs.cglib;

/**
 * See {@link EnhancerTest}
 * @version $Revision: 1.1 $, $Date: 2004/06/02 20:54:57 $
 * @author billhorsman
 * @author $Author: billhorsman $ (current maintainer)
 */
public interface MyInterfaceIF {

    public void bar();
    
}
/*
 Revision history:
 $Log: MyInterfaceIF.java,v $
 Revision 1.1  2004/06/02 20:54:57  billhorsman
 Learning test class for Enhancer. It fails (or would if the assert was uncommented). Left in for knowledge.

*/