//#include "stdafx.h"
#include "string"
#include "vector"
#include "iostream"


using namespace std;

struct Board {
  vector<string> myVector{"IVal 1", "IVal 1"};
  
  void push_back(string val)
  {
	myVector.push_back(val);
  }
  
  void print()
  {
  	for (auto it = myVector.begin(); it != myVector.end(); ++it)
		cout << " | " << *it;
  }
};

int main()
{
	Board b;
	b.push_back("Value 1");
	b.push_back("Value 2");
	
	b.print();
	
	return 0;
}