No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
[QUOTE=Tellalca;1427567]Make the error corrections about arguement list and then compile and repost the errors and the new code here.[/QUOTE] [CODE]#include <iostream> using namespace std; // ------CLASS DEFINITIONS------ class TheData { public: TheData(double* = 0, unsigned long = 0, bool = false); ~TheData(); void SetValue(double*, TheData&); void SetValue(unsigned long, TheData&); void …
I’ve been told to convert a standard C++ program into an object-oriented one, using the principals of polymorphism, encapsulation and inheritance. I would appreciate any help // Purpose // A program to demonstrate the application of a simple digital filter // // Overview // A sequence of data items and …
The End.
goldmn480