GBParticle.cpp 286 B

123456789101112131415
  1. #pragma once
  2. #include "stdafx.h"
  3. #include "GBParticle.h"
  4. namespace OTSGBCalculate
  5. {
  6. using namespace std;
  7. using namespace OTSDATA;
  8. GBParticle::GBParticle(COTSParticlePtr p, GB_LEVEL_TYPE theType, GB_WIDTH_TYPE theWidth)
  9. {
  10. myPart = p;
  11. myType = theType;
  12. myWidth = theWidth;
  13. }
  14. }