これは私のコードです:
struct opts
{
int a;
int b;
};
class myclass
{
private:
opts options;
public:
void afunction();
}
//myclass.cpp
void myclass::afunction()
{
if options.a==1
//do something
}
コンパイルすると、次のエラーが発生します。
error C2061: syntax error : identifier options
何が問題なのですか?