소스 검색

recover the SemTestForms.Designer.cs file

gsp 3 년 전
부모
커밋
46ba730c5d
4개의 변경된 파일261개의 추가작업 그리고 237개의 파일을 삭제
  1. 1 1
      OTSCPP/OTSClrInterface/CommonClr/DomainClr.cpp
  2. 2 2
      OTSCPP/OTSData/Domain.cpp
  3. 1 1
      OTSCPP/OTSData/Domain.h
  4. 257 233
      OTSSysMgrApp/SemTestForms.Designer.cs

+ 1 - 1
OTSCPP/OTSClrInterface/CommonClr/DomainClr.cpp

@@ -368,7 +368,7 @@ namespace OTSCLRINTERFACE {
 
 		if (domainPtr != nullptr)
 		{
-			domainPtr->SetPolygonPoint(&listPolygonPoint);
+			domainPtr->SetPolygonPoint(listPolygonPoint);
 		}
 
 	}

+ 2 - 2
OTSCPP/OTSData/Domain.cpp

@@ -99,9 +99,9 @@ namespace OTSDATA {
 		return (m_nShape < DOMAIN_SHAPE::MIN) || m_nShape > DOMAIN_SHAPE::MAX || m_rectDomain.IsRectEmpty();
 	}
 
-	void CDomain::SetPolygonPoint(const std::vector<CPoint>* a_PolygonPoint)
+	void CDomain::SetPolygonPoint(const std::vector<CPoint> a_PolygonPoint)
 	{
-		std::vector<CPoint> ps = *a_PolygonPoint;
+		std::vector<CPoint> ps = a_PolygonPoint;
 		m_PolygonPoint.clear();
 		for (auto p : ps)
 		{

+ 1 - 1
OTSCPP/OTSData/Domain.h

@@ -65,7 +65,7 @@ namespace OTSDATA {
 
 		// PolygonPoint
 		std::vector<CPoint> GetPolygonPoint() const { return m_PolygonPoint; }
-		void SetPolygonPoint(const std::vector<CPoint>* a_PolygonPoint);
+		void SetPolygonPoint(const std::vector<CPoint> a_PolygonPoint);
 		//void AddPolygonPoint(CPoint p) { m_PolygonPoint.push_back(p); }
 		// check if have common area with the given domain
 		BOOL IntersectDomain(const CDomain& a_oDomain);

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 257 - 233
OTSSysMgrApp/SemTestForms.Designer.cs


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.