C/C++
pt.asc
Associated article: Examining Symantec C++
Tags: .NET C/C++
_EXAMINING SYMANTEX C++_
by Michael Yam
Listing One
//----- PTATOM.H - Declares class interface for Periodic Table ---
#ifndef __PTATOM_H__
#define __PTATOM_H__
#include "ptdefs.h"
class CATOM
{
private:
char Name[PT_NAMELEN+1];
int NumberOfElectrons;
int ...


