Can I use cout statement in a void func in a Header class?

Below is the Header, I have trouble with. Anyways I cant use cout here, please give me some pointer on what to do.

//Animation.h
#pragma once

class Animation {
Frame* frames;
public:
Animation();
~Animation();
void InsertFrame(){
"Insert a Frame in the Animation \n";
//cout << "\nPlease enter the Frame filename: ";

}
void DeleteFrames(){}
void RunFrames(){}
};

Thanks.
You can use std::cout there.
Thanks. I tried it and it worked. Thanks alot.
Topic archived. No new replies allowed.