#pragma once #include "OTSFieldData.h" #include "CGBLevel.h" #include namespace OTSGBCalculate { using namespace std; using namespace OTSDATA; class GBParticle { public: GBParticle(COTSParticlePtr p, GB_LEVEL_TYPE theType, GB_WIDTH_TYPE theWidth); GBParticle() { } GB_LEVEL_TYPE myType; GB_WIDTH_TYPE myWidth; COTSParticlePtr myPart; }; }