notificationlogirpnotifications.idl
来自「UCS (Ultra Corba Simulator) is one more 」· IDL 代码 · 共 49 行
IDL
49 行
// File: NotificationLogIRPNotifications.idl
#ifndef _NOTIFICATIONLOGIRPNOTIFICATIONS_IDL_
#define _NOTIFICATIONLOGIRPNOTIFICATIONS_IDL_
#include "NotificationIRPNotifications.idl"
// This statement must appear after all include statements
#pragma prefix "3gppsa5.org"
module NotificationLogIRPNotifications
{
interface NotifyLogSubscribed: NotificationIRPNotifications::Notify
{
const string NOTIFY_LOG_SUBSRIBED = "x1";
const string LOG_SUBSCRIPTION_ID = "id";
const string LOGGING_END_TIME = "loggingEndTime";
const string NOTIFICATION_CATEGORIES = "categories";
const string FILTER = "filter";
};
interface NotifyLogUnubscribed: NotificationIRPNotifications::Notify
{
const string NOTIFY_LOG_UNSUBSCRIBED = "x2";
const string LOG_SUBSCRIPTION_ID = "id";
};
interface NotifyLogOccupancyLevelCrossed:
NotificationIRPNotifications::Notify
{
const string NOTIFY_LOG_OCCUPANCY_LEVEL_CROSSED = "x3";
const string LOG_SUBSCRIPTION_ID = "id";
const string CURRENT_OCCUPANCY_LEVEL = "level";
const string LOG_FULL_ACTION = "fullAction";
};
interface NotifyLoggingResumed: NotificationIRPNotifications::Notify
{
const string NOTIFY_LOGGING_RESUMED = "x4";
const string LOG_SUBSCRIPTION_ID = "id";
};
};
#endif // _NOTIFICATIONLOGIRPNOTIFICATIONS_IDL_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?