1// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
2// Copyright (C) 2011 - DIGITEO - Sylvestre Ledru
3//
4// This file is released under the 3-clause BSD license. See COPYING-BSD.
5
6
7function subdemolist = demo_gateway()
8
9    demopath = get_absolute_file_path("hdf5.dem.gateway.sce");
10    _("HDF5");  // lets gettext() harvesting it
11    add_demo("HDF5", demopath + "hdf5.dem.gateway.sce");
12
13    subdemolist = [_("Ring resonator (HDF5 data source)")   ,"resonator.dem.sce" ]
14
15    subdemolist(:,2) = demopath + subdemolist(:,2);
16endfunction
17
18subdemolist = demo_gateway();
19clear demo_gateway;
20