Files
evolution/executive-summary/idl/SummaryComponent.idl
Ettore Perazzoli 91cc026904 Update the copyrights, replacing Helix Code with Ximian and
helixcode.com with ximian.com all over the place.

svn path=/trunk/; revision=10440
2001-06-23 08:52:02 +00:00

37 lines
640 B
Plaintext

/*-*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* CORBA interface for the Evolution Executive Summary Components.
*
* Authors:
* Iain Holmes <iain@ximian.com>
*
* Copyright (C) 2000 Ximian, Inc.
*/
/* TODO: Needs Exceptions */
#include <Bonobo.idl>
#include <oaf-factory.idl>
module GNOME {
module Evolution {
module Summary {
interface ViewFrame;
interface Component: Bonobo::Unknown {
};
interface ComponentFactory: Bonobo::Unknown {
/**
* createView:
*
* Creates a new Component object.
*
* Returns: A Component object.
**/
Component createView ();
};
};
};
};