I am now learning C ++ and trying to learn class and vector. I'm trying to write code, but I got an error.
this is my class and enum class:
enum class state: char{ empty='.', filled_with_x='x', filled_with_o='o'};
class class1{
private:
class class2{
class2()...