001 package railo.runtime.functions.international; 002 003 import railo.runtime.PageContext; 004 import railo.runtime.exp.PageException; 005 import railo.runtime.ext.function.Function; 006 007 /** 008 * Implements the Cold Fusion Function lsparseeurocurrency 009 */ 010 public final class LSParseEuroCurrency implements Function { 011 public static String call(PageContext pc , String string) throws PageException { 012 return LSParseCurrency.call(pc,string); 013 } 014 public static String call(PageContext pc , String string,String strLocale) throws PageException { 015 return LSParseCurrency.call(pc,string,strLocale); 016 } 017 }