I am having an issue with my explicit value constructor. It won't let me input items from a file to the an array in it. I am getting this error " error C2679: binary '>>' : no operator found which takes a right-hand operand of type 'call_record' (or there is no acceptable conversion)". It is occurring at "input>>call_DB[count++];".
The problem is exactly what it says. You're trying to use the operator >> to read data into an object of type call_record, but the compiler doesn't know how to do that. You will have to write it yourself.