/*
//
//   ADOBE SYSTEMS INCORPORATED
//   Copyright (C) 2000-2003 Adobe Systems Incorporated
//   All rights reserved.
//
//   NOTICE: Adobe permits you to use, modify, and distribute this file
//   in accordance with the terms of the Adobe license agreement
//   accompanying it. If you have received this file from a source other
//   than Adobe, then your use, modification, or distribution of it
//   requires the prior written permission of Adobe.
//
*/

#ifndef _peddlerutils_h_
#define _peddlerutils_h_

#ifdef MAC_ENV
#include "macUtils.h"
#else
#include <sys/types.h>
#include <sys/stat.h>
#endif

#include "ASCalls.h"
#include <string>

using namespace  std;

class  PeddlerUtils  {
public : 
                static   string   getSysPath( string  path);
private :
                static   ASBool   IsUnixPath( string  path);
                static   ASBool   IsMacPath( string  path);
                static   ASBool   IsWinPath( string  path); 
};

#endif // _peddlerutils_h_