00001 #ifndef PROTON_CID_H
00002 #define PROTON_CID_H 1
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 typedef enum {
00025 CID_pn_object = 1,
00026 CID_pn_void,
00027 CID_pn_weakref,
00028
00029 CID_pn_string,
00030 CID_pn_list,
00031 CID_pn_map,
00032 CID_pn_hash,
00033 CID_pn_record,
00034
00035 CID_pn_collector,
00036 CID_pn_event,
00037
00038 CID_pn_encoder,
00039 CID_pn_decoder,
00040 CID_pn_data,
00041
00042 CID_pn_connection,
00043 CID_pn_session,
00044 CID_pn_link,
00045 CID_pn_delivery,
00046 CID_pn_transport,
00047
00048 CID_pn_message,
00049
00050 CID_pn_reactor,
00051 CID_pn_handler,
00052 CID_pn_timer,
00053 CID_pn_task,
00054
00055 CID_pn_io,
00056 CID_pn_selector,
00057 CID_pn_selectable,
00058
00059 CID_pn_url
00060 } pn_cid_t;
00061
00062 #endif