[ create a new paste ] login | about

Link: http://codepad.org/7e3zGdss    [ raw code | output | fork ]

C++, pasted on Nov 1:
#ifndef coordinate
#define coordinate

#include <iostream>
#include <string>
#include <fstream>
#include <vector>
#include <array>
#include "Bunny.h"

using namespace std;


class Coordinates
{
	private:
		int x;
		int y;
		bool leftIsClear;
		bool rightIsClear;
		bool upIsClear;
		bool downIsClear;
	public:
		Coordinates();
		int GetX();
		int GetY();
		void SetX(int);
		void SetY(int);
		
};	
#endif


Output:
1
2
Line 16: error: array: No such file or directory
Line 18: error: Bunny.h: No such file or directory


Create a new paste based on this one


Comments: