Files
fluxengine/lib/data/locations.h
David Given f24e4029b4 Flux sources now add the locations of their data to _extraConfig ---
which is now honoured. Fix a bunch of bugs in some of the flux sources
and sinks. The converter now actually works, maybe.
2025-08-17 00:38:25 +02:00

14 lines
376 B
C++

#pragma once
struct CylinderHead
{
bool operator==(const CylinderHead&) const = default;
std::strong_ordering operator<=>(const CylinderHead&) const = default;
unsigned cylinder, head;
};
extern std::vector<CylinderHead> parseCylinderHeadsString(const std::string& s);
extern std::string convertCylinderHeadsToString(
const std::vector<CylinderHead>& chs);