@@ -0,0 +1,6 @@
+#include "BitBoard.h"
+
+std::string chessy::Index::getName(void) const
+{
+ return { char('a' + getColumn()), char(getRow() + '1') };
+}