Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /// http://www.cplusplus.com/forum/beginner/75558/
- #include <iostream>
- #include "PointType.h"
- using namespace std;
- int main()
- {
- PointType point(3,4);
- std::cout << point;
- std::cout << std::endl;
- Circle crcl(0,0,5);
- std::cout << crcl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement