rename all serialize methods to sgserialize in kismet modules due to compilation warnings

This commit is contained in:
Mamadou Babaei
2022-11-04 16:57:13 +01:00
parent 9e09051831
commit a8bf446977
26 changed files with 39 additions and 39 deletions
@@ -202,7 +202,7 @@ FString USGBasicHandModelKismetLibrary::ToString_bLengthsOnly(const USGBasicHand
return BasicHandModel->ToString(bLengthsOnly);
}
FString USGBasicHandModelKismetLibrary::Serialize(const USGBasicHandModel* BasicHandModel)
FString USGBasicHandModelKismetLibrary::SGSerialize(const USGBasicHandModel* BasicHandModel)
{
return BasicHandModel->SGSerialize();
}
@@ -151,7 +151,7 @@ bool USGHandInterpolatorKismetLibrary::Equals(const USGHandInterpolator* A, cons
return A->Equals(B);
}
FString USGHandInterpolatorKismetLibrary::Serialize(const USGHandInterpolator* HandInterpolator)
FString USGHandInterpolatorKismetLibrary::SGSerialize(const USGHandInterpolator* HandInterpolator)
{
return HandInterpolator->SGSerialize();
}
@@ -164,7 +164,7 @@ FString USGHandPoseKismetLibrary::ToString(const USGHandPose* HandPose, const bo
return HandPose->ToString(bShortFormat);
}
FString USGHandPoseKismetLibrary::Serialize(const USGHandPose* HandPose)
FString USGHandPoseKismetLibrary::SGSerialize(const USGHandPose* HandPose)
{
return HandPose->SGSerialize();
}
@@ -134,7 +134,7 @@ void USGHandProfileKismetLibrary::Reset(USGHandProfile* HandProfile)
HandProfile->Reset();
}
FString USGHandProfileKismetLibrary::Serialize(const USGHandProfile* HandProfile)
FString USGHandProfileKismetLibrary::SGSerialize(const USGHandProfile* HandProfile)
{
return HandProfile->SGSerialize();
}
@@ -143,7 +143,7 @@ FString USGInterpolationSetKismetLibrary::ToString_bLimits(const USGInterpolatio
return InterpolationSet->ToString(bLimits);
}
FString USGInterpolationSetKismetLibrary::Serialize(const USGInterpolationSet* InterpolationSet)
FString USGInterpolationSetKismetLibrary::SGSerialize(const USGInterpolationSet* InterpolationSet)
{
return InterpolationSet->SGSerialize();
}
@@ -71,7 +71,7 @@ void USGNovaGloveHandProfileKismetLibrary::Reset(USGNovaGloveHandProfile* NovaGl
NovaGloveHandProfile->Reset();
}
FString USGNovaGloveHandProfileKismetLibrary::Serialize(const USGNovaGloveHandProfile* NovaGloveHandProfile)
FString USGNovaGloveHandProfileKismetLibrary::SGSerialize(const USGNovaGloveHandProfile* NovaGloveHandProfile)
{
return NovaGloveHandProfile->SGSerialize();
}
@@ -111,7 +111,7 @@ FString USGNovaGloveInfoKismetLibrary::ToString(const USGNovaGloveInfo* NovaGlov
return NovaGloveInfo->ToString();
}
FString USGNovaGloveInfoKismetLibrary::Serialize(const USGNovaGloveInfo* NovaGloveInfo)
FString USGNovaGloveInfoKismetLibrary::SGSerialize(const USGNovaGloveInfo* NovaGloveInfo)
{
return NovaGloveInfo->SGSerialize();
}
@@ -109,7 +109,7 @@ FString USGNovaGloveSensorDataKismetLibrary::ToString(const USGNovaGloveSensorDa
return NovaGloveSensorData->ToString();
}
FString USGNovaGloveSensorDataKismetLibrary::Serialize(const USGNovaGloveSensorData* NovaGloveSensorData)
FString USGNovaGloveSensorDataKismetLibrary::SGSerialize(const USGNovaGloveSensorData* NovaGloveSensorData)
{
return NovaGloveSensorData->SGSerialize();
}
@@ -107,7 +107,7 @@ void USGSenseGloveHandProfileKismetLibrary::Reset(USGSenseGloveHandProfile* Sens
SenseGloveHandProfile->Reset();
}
FString USGSenseGloveHandProfileKismetLibrary::Serialize(const USGSenseGloveHandProfile* SenseGloveHandProfile)
FString USGSenseGloveHandProfileKismetLibrary::SGSerialize(const USGSenseGloveHandProfile* SenseGloveHandProfile)
{
return SenseGloveHandProfile->SGSerialize();
}
@@ -173,7 +173,7 @@ FString USGSenseGloveInfoKismetLibrary::ToString_bShortNotation(const USGSenseGl
return SenseGloveInfo->ToString(bShortNotation);
}
FString USGSenseGloveInfoKismetLibrary::Serialize(const USGSenseGloveInfo* SenseGloveInfo)
FString USGSenseGloveInfoKismetLibrary::SGSerialize(const USGSenseGloveInfo* SenseGloveInfo)
{
return SenseGloveInfo->SGSerialize();
}
@@ -122,7 +122,7 @@ FString USGSenseGlovePoseKismetLibrary::ToString(const USGSenseGlovePose* SenseG
return SenseGlovePose->ToString(bShortFormat);
}
FString USGSenseGlovePoseKismetLibrary::Serialize(const USGSenseGlovePose* SenseGlovePose)
FString USGSenseGlovePoseKismetLibrary::SGSerialize(const USGSenseGlovePose* SenseGlovePose)
{
return SenseGlovePose->SGSerialize();
}
@@ -112,7 +112,7 @@ FString USGSenseGloveSensorDataKismetLibrary::ToString(const USGSenseGloveSensor
return SenseGloveSensorData->ToString();
}
FString USGSenseGloveSensorDataKismetLibrary::Serialize(const USGSenseGloveSensorData* SenseGloveSensorData)
FString USGSenseGloveSensorDataKismetLibrary::SGSerialize(const USGSenseGloveSensorData* SenseGloveSensorData)
{
return SenseGloveSensorData->SGSerialize();
}
@@ -113,7 +113,7 @@ FString USGSensorRangeKismetLibrary::ToString(const USGSensorRange* SensorRange,
return SensorRange->ToString(bYOnly);
}
FString USGSensorRangeKismetLibrary::Serialize(const USGSensorRange* SensorRange)
FString USGSensorRangeKismetLibrary::SGSerialize(const USGSensorRange* SensorRange)
{
return SensorRange->SGSerialize();
}