#include "Record/RecRecordImp.h"Go to the source code of this file.
Functions | |
| ClassImpT (RecRecordImp, T) template< class T > const VldContext *RecRecordImp< T > | |
|
||||||||||||
|
Definition at line 17 of file RecRecordImp.cxx. References RecHeader::GetVldContext(). 00023 {
00024 //
00025 // Purpose: Return a const pointer to the VldContext in the header.
00026 //
00027 // Arguments: none.
00028 //
00029 // Return: ptr to VldContext or null if none.
00030 //
00031 // Contact: S. Kasahara
00032 //
00033
00034 const RecHeader* hdr = dynamic_cast<const RecHeader*>(&GetHeader());
00035 if ( hdr)
00036 return &(hdr->GetVldContext());
00037 else
00038 return 0;
00039
00040 }
|
1.3.9.1