#pragma once #include "../Native/CElementHelper.h" using namespace System; namespace GeomNet = Bentley::GeometryNET; namespace BRDI { namespace MstnAPI { ref class ElementHelper { public: void CreateLineElement(GeomNet::DPoint3d startPoint, GeomNet::DPoint3d endPoint); void CreateLineStringElement(array^ points); void CreateCurveElement(GeomNet::CurveVector^ curveVector); void BodyFromLoft(array^ profiles, DgnPlatformNET::DgnModelRef^ dgnModelRef); void ShowMessage(String^ message); }; } }