1998-12-02 23:44:06 +00:00
|
|
|
#include <factory.idl>
|
|
|
|
|
1998-12-04 21:32:19 +00:00
|
|
|
module FileManager {
|
|
|
|
interface Factory : GNOME::Factory {};
|
1998-12-02 23:44:06 +00:00
|
|
|
|
1998-12-03 16:10:25 +00:00
|
|
|
exception POSIX_ERROR {};
|
|
|
|
|
1998-12-04 21:32:19 +00:00
|
|
|
interface Window {
|
1998-12-03 16:10:25 +00:00
|
|
|
void chdir (in string dir)
|
|
|
|
raises (POSIX_ERROR);
|
1998-12-02 23:44:06 +00:00
|
|
|
};
|
|
|
|
};
|