This commit is contained in:
Marijn van der Werf 2016-10-17 15:15:40 +02:00
parent 18d9b1e91e
commit 455080d8b8
3 changed files with 6 additions and 6 deletions

View File

@ -42,11 +42,10 @@ struct SupportCall {
}
};
class GeneralSupportHeightCall {
public:
static bool CallsMatch(SupportCall tileSupportCalls[4]);
namespace GeneralSupportHeightCall {
bool CallsMatch(SupportCall tileSupportCalls[4]);
static SupportCall *FindMostCommonSupportCall(SupportCall calls[4]);
SupportCall *FindMostCommonSupportCall(SupportCall calls[4]);
static bool AssertEquals(const SupportCall *lhs, const SupportCall *rhs);
bool AssertEquals(const SupportCall *lhs, const SupportCall *rhs);
};

View File

@ -15,6 +15,7 @@
#pragma endregion
#include <map>
#include <algorithm>
#include "SegmentSupportHeightCall.hpp"

View File

@ -358,7 +358,7 @@ static void PrintRideTypes()
}
}
#import "GeneralSupportHeightCall.hpp"
#include "GeneralSupportHeightCall.hpp"
static void TestGeneralSupportHeightCall() {
SupportCall callA = {16, 0x20};