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