Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
#ifndef RECTANGLE_H
#define RECTANGLE_H

namespace shapes {
	class Rectangle {
		public:
			int x0, y0, x1, y1;
			Rectangle();
			Rectangle(int x0, int y0, int x1, int y1);
			~Rectangle();
			int getArea();
			void getSize(int* width, int* height);
			void move(int dx, int dy);
	};
}

#endif