Sha256: 267bcd022df033da82b681b0f99efe00495526f7cf06b881f437f49ae599d434

Contents?: true

Size: 829 Bytes

Versions: 14

Compression:

Stored size: 829 Bytes

Contents

#include "StdAfx.h"

//-----------------------------------------------------------------------------

CField::CField(const char *name, const char *value)
	{
	Name.SetStr(name);
	Value.SetStr(value);
	}

//-----------------------------------------------------------------------------
CRecord::CRecord(const char *name, const char *value)
	{
	AddField(name, value);
	}

//-----------------------------------------------------------------------------

CRecord::~CRecord()
	{
	Clear();
	}

//-----------------------------------------------------------------------------

void CRecord::AddField(const char *name, const char *value)
	{
	Fields.Add(new CField(name, value));
	}

//-----------------------------------------------------------------------------

void CRecord::Clear(void)
	{
	while (Fields.Count())
		Fields.Remove(0);
	}

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rhodes-7.6.0 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-7.5.1 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-7.4.1 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-7.1.17 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-6.2.0 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-6.0.11 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-5.5.18 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-5.5.17 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-5.5.15 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-5.5.0.22 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-5.5.2 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-5.5.0.7 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-5.5.0.3 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp
rhodes-5.5.0 neon/Helium/HeliumForWindows/Implementation/Common/Private/odax/CRecord.cpp