MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: digitals (531)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: //usr/share/idl/bonobo-activation-2.0/Bonobo_Unknown.idl
/*
 * bonobo-unknown.idl: The base Bonobo Object
 *
 *   This is the base interface from which every bonobo interface
 * is derived it provides the mechanisms for introspecting an
 * aggregate object.
 *
 * Copyright (C) 1999, 2000  Helix Code, Inc.
 *
 * Author:
 *	Miguel de Icaza (miguel@helixcode.com)
 */

#ifndef __BONOBO_UNKNOWN_IDL__
#define __BONOBO_UNKNOWN_IDL__

#ifndef __Bonobo_Unknown_COMPILATION
#ifdef  __ORBIT_IDL__
%{
#pragma include_defs bonobo-activation/Bonobo_Unknown.h
%}
#pragma inhibit push
#endif
#endif

module Bonobo {
	interface Unknown {
		/**
		 * ref:
		 *
		 * increments the reference count
		 */
		void ref ();

		/**
		 * unref:
		 * 
		 * decrements the reference count
		 */
		void unref ();

		/**
		 * queryInterface:
		 * @repoid: A string identifying an interface.
		 *
		 * Returns: A CORBA object exposing the interface
		 * specified by @repoid, or a nil object if the
		 * interface cannot be queried.
		 */
		Unknown queryInterface (in string repoid);
	};
};

#ifndef __Bonobo_Unknown_COMPILATION
#ifdef __ORBIT_IDL__
#pragma inhibit pop
#endif
#endif

#endif /* ! __BONOBO_UNKNOWN_IDL__ */