123456789101112131415 |
- #pragma once
- #include "stdafx.h"
- #include "GBParticle.h"
- namespace OTSGBCalculate
- {
- using namespace std;
- using namespace OTSDATA;
- GBParticle::GBParticle(COTSParticlePtr p, GB_LEVEL_TYPE theType, GB_WIDTH_TYPE theWidth)
- {
- myPart = p;
- myType = theType;
- myWidth = theWidth;
- }
- }
|