Add const qualifiers

This commit is contained in:
Loic Guegan 2023-01-15 14:23:54 +01:00
parent 52c2fd4521
commit 2ac42558f2
2 changed files with 7 additions and 7 deletions

View file

@ -11,7 +11,7 @@ HalfMove::~HalfMove() {
} }
} }
std::string HalfMove::NestedDump(HalfMove *m, int indent) { std::string HalfMove::NestedDump(const HalfMove *m, int indent) const{
std::stringstream ss; std::stringstream ss;
for (int i = 0; i < indent; i++) { for (int i = 0; i < indent; i++) {
@ -33,11 +33,11 @@ std::string HalfMove::NestedDump(HalfMove *m, int indent) {
return (ss.str()); return (ss.str());
} }
std::string HalfMove::Dump() { return (NestedDump(this, 0)); } std::string HalfMove::Dump() const { return (NestedDump(this, 0)); }
int HalfMove::GetLength() { int HalfMove::GetLength() const {
int length = 0; int length = 0;
HalfMove *m = this; const HalfMove *m = this;
while (m != NULL) { while (m != NULL) {
length++; length++;
m = m->MainLine; m = m->MainLine;

View file

@ -13,7 +13,7 @@ namespace pgnp {
class HalfMove { class HalfMove {
private: private:
/// @brief Recursive dump /// @brief Recursive dump
std::string NestedDump(HalfMove *, int); std::string NestedDump(const HalfMove *, int) const;
public: public:
/// @brief Contains current move count /// @brief Contains current move count
@ -33,9 +33,9 @@ public:
HalfMove(); HalfMove();
~HalfMove(); ~HalfMove();
/// @brief Get number of HalfMove in the MailLine /// @brief Get number of HalfMove in the MailLine
int GetLength(); int GetLength() const;
/// @brief Dump move and all its variations /// @brief Dump move and all its variations
std::string Dump(); std::string Dump() const;
/// @brief Perform a deep copy of a HalfMove /// @brief Perform a deep copy of a HalfMove
void Copy(HalfMove *copy); void Copy(HalfMove *copy);
/// @brief Get HalfMove located x down the MainLine /// @brief Get HalfMove located x down the MainLine