001    package railo.runtime.functions.dateTime;
002    
003    import railo.runtime.PageContext;
004    import railo.runtime.ext.function.Function;
005    import railo.runtime.type.dt.DateTime;
006    import railo.runtime.type.dt.DateTimeImpl;
007    
008    /**
009     * Implements the CFML Function now
010     */
011    public final class Now implements Function {
012            /**
013             * @param pc
014             * @return
015             */
016            public static DateTime call(PageContext pc ) {
017                    return new DateTimeImpl(pc);
018            }
019            
020            /*public static DateTime now() {
021                    return new DateTimeImpl();
022            }*/
023    }