001 // GraphLab Project: http://graphlab.sharif.edu 002 // Copyright (C) 2008 Mathematical Science Department of Sharif University of Technology 003 // Distributed under the terms of the GNU General Public License (GPL): http://www.gnu.org/licenses/ 004 005 package graphlab.plugins.commandline.parsers; 006 007 import java.io.File; 008 009 /** 010 * @author Mohammad Ali Rostami 011 * @email ma.rostami@yahoo.com 012 */ 013 public class BSHFile extends File { 014 public BSHFile(String pathname) { 015 super(pathname); 016 } 017 }