Fix inheritance formatting
This commit is contained in:
parent
fa38fa695b
commit
4ed3b84cb6
|
@ -19,8 +19,8 @@
|
||||||
|
|
||||||
#include <aoc/LinesSolver.hpp>
|
#include <aoc/LinesSolver.hpp>
|
||||||
|
|
||||||
class CeresSearch :
|
class CeresSearch
|
||||||
public LinesSolver
|
: public LinesSolver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
std::string getPuzzleName() const override;
|
std::string getPuzzleName() const override;
|
||||||
|
|
|
@ -17,8 +17,8 @@
|
||||||
|
|
||||||
#include <aoc/LinesSolver.hpp>
|
#include <aoc/LinesSolver.hpp>
|
||||||
|
|
||||||
class GuardGallivant :
|
class GuardGallivant
|
||||||
public LinesSolver
|
: public LinesSolver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Point2 start_{};
|
Point2 start_{};
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
#include <aoc/Point2.hpp>
|
#include <aoc/Point2.hpp>
|
||||||
#include <aoc/Solver.hpp>
|
#include <aoc/Solver.hpp>
|
||||||
|
|
||||||
class LinesSolver :
|
class LinesSolver
|
||||||
public Solver
|
: public Solver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void processDataLine(const std::string& line) override;
|
void processDataLine(const std::string& line) override;
|
||||||
|
|
|
@ -17,8 +17,8 @@
|
||||||
|
|
||||||
#include <aoc/Solver.hpp>
|
#include <aoc/Solver.hpp>
|
||||||
|
|
||||||
class PrintQueue :
|
class PrintQueue
|
||||||
public Solver
|
: public Solver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PrintQueue();
|
PrintQueue();
|
||||||
|
|
Loading…
Reference in New Issue