* DropzoneModule hello world * Buttoning things up * Exclude by default * Upstream refs * Cleanup * Add modules folder to path * Case and path matters * Exclude from header * Guard
11 lines
305 B
C++
11 lines
305 B
C++
#pragma once
|
|
|
|
class UnitConversions
|
|
{
|
|
public:
|
|
static float CelsiusToFahrenheit(float celcius);
|
|
static float MetersPerSecondToKnots(float metersPerSecond);
|
|
static float MetersPerSecondToMilesPerHour(float metersPerSecond);
|
|
static float HectoPascalToInchesOfMercury(float hectoPascal);
|
|
};
|