mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
which is now honoured. Fix a bunch of bugs in some of the flux sources and sinks. The converter now actually works, maybe.
14 lines
376 B
C++
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);
|