13 строки
195 B
Plaintext
13 строки
195 B
Plaintext
#include <factory.idl>
|
|
|
|
module FileManager {
|
|
interface Factory : GNOME::Factory {};
|
|
|
|
exception POSIX_ERROR {};
|
|
|
|
interface Window {
|
|
void chdir (in string dir)
|
|
raises (POSIX_ERROR);
|
|
};
|
|
};
|