1 /*--------------------------------------------------------------------------*/
3 * ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) DIGITEO - 2009 - Allan CORNET
6 * This file must be used under the terms of the CeCILL.
7 * This source file is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at
10 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 /*--------------------------------------------------------------------------*/
14 #ifndef __GETFULLFILENAME_HXX__
15 #define __GETFULLFILENAME_HXX__
20 * get full filename with path of a file
21 * @param[in] std::wstring input filename
22 * @return std::wstring full filename
24 std::wstring getFullFilename(std::wstring _wfilename);
26 #endif /* __GETFULLFILENAME_HXX__ */
27 /*--------------------------------------------------------------------------*/