1998-12-14 08:15:48 +03:00
|
|
|
#include <gnome-factory.idl>
|
1998-12-03 02:44:06 +03:00
|
|
|
|
1998-12-14 08:15:48 +03:00
|
|
|
module GNOME {
|
|
|
|
exception POSIX_ERROR { string errorstr; };
|
1998-12-03 02:44:06 +03:00
|
|
|
|
1998-12-14 08:15:48 +03:00
|
|
|
interface FileManagerWindow {
|
|
|
|
/* not much yet */
|
|
|
|
oneway void close();
|
|
|
|
};
|
1998-12-03 19:10:25 +03:00
|
|
|
|
1998-12-14 08:15:48 +03:00
|
|
|
interface FileManagerFactory : GenericFactory {
|
|
|
|
FileManagerWindow create_window(in string dir)
|
|
|
|
raises (POSIX_ERROR);
|
|
|
|
};
|
1998-12-03 02:44:06 +03:00
|
|
|
};
|