File: pfcscanner_n_cst_filesrvhpux.sru
Size: 1996
Date: Sat, 23 Mar 2013 16:23:05 +0100
HA$PBExportHeader$pfcscanner_n_cst_filesrvhpux.sru
$PBExportComments$PFC hpux File handler service
forward
global type pfcscanner_n_cst_filesrvhpux from pfcscanner_n_cst_filesrv
end type
end forward

global type pfcscanner_n_cst_filesrvhpux from pfcscanner_n_cst_filesrv
end type
global pfcscanner_n_cst_filesrvhpux pfcscanner_n_cst_filesrvhpux

type prototypes
end prototypes

type variables
end variables

forward prototypes
end prototypes

on pfcscanner_n_cst_filesrvhpux.create
call super::create
end on

on pfcscanner_n_cst_filesrvhpux.destroy
call super::destroy
end on

event constructor;call super::constructor;//////////////////////////////////////////////////////////////////////////////
// Event:  Constructor
// Description:   Set the instance variables for the directory separator
//                and wildcard for all files for this OS.
//////////////////////////////////////////////////////////////////////////////
// Rev. History:  Version
//                6.0   Initial version
//////////////////////////////////////////////////////////////////////////////
/*
 * Open Source PowerBuilder Foundation Class Libraries
 *
 * Copyright (c) 2004-2005, All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted in accordance with the GNU Lesser General
 * Public License Version 2.1, February 1999
 *
 * http://www.gnu.org/copyleft/lesser.html
 *
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals and was originally based on software copyright (c) 
 * 1996-2004 Sybase, Inc. http://www.sybase.com.  For more
 * information on the Open Source PowerBuilder Foundation Class
 * Libraries see http://pfc.codexchange.sybase.com
*/
//////////////////////////////////////////////////////////////////////////////
is_Separator = "/"
is_AllFiles = "*"
is_FileType = "pbl"
end event