29 строки
711 B
C
29 строки
711 B
C
/*
|
|
* $HEADER$
|
|
*/
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
#include "lfc/lam_list.h"
|
|
#include "mca/ptl/base/ptl_base_fragment.h"
|
|
|
|
static void mca_ptl_base_frag_construct(mca_ptl_base_frag_t* frag);
|
|
static void mca_ptl_base_frag_destruct(mca_ptl_base_frag_t* frag);
|
|
|
|
|
|
lam_class_t mca_ptl_base_frag_t_class = {
|
|
"mca_ptl_base_frag_t",
|
|
OBJ_CLASS(lam_list_item_t),
|
|
(lam_construct_t) mca_ptl_base_frag_construct,
|
|
(lam_destruct_t) mca_ptl_base_frag_destruct
|
|
};
|
|
|
|
static void mca_ptl_base_frag_construct(mca_ptl_base_frag_t* frag)
|
|
{
|
|
OBJ_CONSTRUCT(&frag->frag_convertor, lam_convertor_t);
|
|
}
|
|
|
|
static void mca_ptl_base_frag_destruct(mca_ptl_base_frag_t* frag)
|
|
{
|
|
}
|
|
|