blob: 21c7b985ab46a58c353520f28f95832b1fe23702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/**
* @file Activation_Manager.idl
*
* @brief
*
* $Id$
*
* @author Pradeep Gore <pradeep@oomworks.com>
*/
#ifndef _NOTIFY_TEST_IDL_
#define _NOTIFY_TEST_IDL_
#pragma prefix ""
/**
* @namespace Activation_Manager
*
* @brief Notify Test
*/
module Notify_Test
{
interface Activation_Manager
{
/*
* Prompts the Activation Manager to start.
*/
void start ();
};
};
#endif /* _NOTIFY_TEST_IDL_ */
|