Create a class named Line: (a) Define private data members p1 and p2 as pointer to Point objects (the one we had in lectures), slope and length as double variables. (b) Define setter and getter functions. (c) Define a null-constructor that initializes numeric variables with zero and allocate dynamic memory for points and initialize them to [0,0] as well. (d) Overload a constructor that allocates memory for points, initilize them with given arguments, and calculate the slope and length. (e) Implement destructor, copy constructor and copy assignment operator. (f) Create a function called ”parallel” that takes too Line objects, returns true when given lines are parallel and returns false otherwise. (g) Overload the less than (<) and greater than (>) and equality (==) operators (compare the length). (h) Write a functions that reads lines in the format provided in the lines.txt from the file (without any change) and stores them in a vector named Lines. (i) Sort the objects of Lines vector in ascending order using the sort function from algorithm library. (j) Extend the functionality of cin and cout for this class. For cin function you need to define a template like [(x1,y1,),(x2,y2)], and ask user to enter the entire input at once. Then you will parse the input, extract x1, y1, x2, and y2 and create an object of Line with them. Need help with (j) immedietly. Thanks.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter13: Overloading And Templates
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question
100%
Create a class named Line:
(a) Define private data members p1 and p2 as pointer to Point objects (the
one we had in lectures), slope and length as double variables.
(b) Define setter and getter functions.
(c) Define a null-constructor that initializes numeric variables with zero and
allocate dynamic memory for points and initialize them to [0,0] as well.
(d) Overload a constructor that allocates memory for points, initilize them
with given arguments, and calculate the slope and length.
(e) Implement destructor, copy constructor and copy assignment operator.
(f) Create a function called ”parallel” that takes too Line objects, returns
true when given lines are parallel and returns false otherwise.
(g) Overload the less than (<) and greater than (>) and equality (==) operators (compare the length).
(h) Write a functions that reads lines in the format provided in the lines.txt
from the file (without any change) and stores them in a vector named Lines.
(i) Sort the objects of Lines vector in ascending order using the sort function from algorithm library.
(j) Extend the functionality of cin and cout for this class. For cin function
you need to define a template like [(x1,y1,),(x2,y2)], and ask user to enter
the entire input at once. Then you will parse the input, extract x1, y1,
x2, and y2 and create an object of Line with them.
Need help with (j) immedietly. Thanks.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning