1 | initial version |
You need to add a constructor for your Blending class:
class Blending
{
public:
Blending(void)
{
alpha = beta = key = defaultvalue = 0;
}
// ...
};
2 | No.2 Revision |
You need to add a constructor for your Blending class:
class Blending
{
public:
Blending(void)
{
alpha = beta = key = defaultvalue = 0;
}
// ...
};
Please upvote my answer, and mark it as correct, if it helped you. Thank you.
3 | No.3 Revision |
You need to add a constructor for your Blending class:
class Blending
{
public:
Blending(void)
{
alpha = beta = key = defaultvalue = 0;
}
// ...
};
Please upvote my answer, and mark it as correct, if it helped you. Thank you.
I also recommend that you buy the book The C++ Programming Language by Stroustrup.
4 | No.4 Revision |
You need to add a constructor for your Blending class:
class Blending
{
public:
Blending(void)
{
alpha = beta = key = defaultvalue = 0;
}
// ...
};
Please upvote my answer, and mark it as correct, if it helped you. Thank you.
I also recommend that you buy the book The C++ Programming Language by Stroustrup.
Now, can I ask why you have duplicate variables outside of the class?