class Movie{
private:
string director,title,genre;
public:
Movie(){
director="";title="";genre="";}
int main(){
Movie a();}
I am having problems with my default constructor. my program compiles but it gives me a warning "warning C4930: 'Movie a(void)': prototyped function not called (was a variable definition intended?)" and if i try to run say d.setTitle("test"); it gives me an error of class/struct....what am i missing? i have been staring at this for hours now.