Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

CSC112 Spring 2016 Examples

2370 views
1
#include "rectangle.h"
2
3
#ifndef SQUARE_H
4
#define SQUARE_H
5
6
class square : public rectangle {
7
public:
8
virtual void getUserParameters(int firstLine);
9
};
10
11
#endif
12
13