001 /**
002 * Copyright (C) 2009-2013 Barchart, Inc. <http://www.barchart.com/>
003 *
004 * All rights reserved. Licensed under the OSI BSD License.
005 *
006 * http://www.opensource.org/licenses/bsd-license.php
007 */
008 package com.barchart.udt;
009
010 /**
011 * @author CCob
012 */
013 public interface FactoryInterfaceUDT {
014
015 CCC create();
016
017 FactoryInterfaceUDT cloneFactory();
018
019 }