32 lines
486 B
C++
32 lines
486 B
C++
// CommentRecord.cpp
|
|
|
|
#include "flt.h"
|
|
#include "Registry.h"
|
|
#include "CommentRecord.h"
|
|
|
|
using namespace flt;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// CommentRecord
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
RegisterRecordProxy<CommentRecord> g_CommentRecordProxy;
|
|
|
|
CommentRecord::CommentRecord()
|
|
{
|
|
}
|
|
|
|
|
|
// virtual
|
|
CommentRecord::~CommentRecord()
|
|
{
|
|
}
|
|
|
|
|
|
// virtual
|
|
void CommentRecord::endian()
|
|
{
|
|
}
|