私は約300の関数を持っており、それぞれのラッパーを作成する必要はありません。
class B
{
func(vartype somevar, int otherparam)
{
//code
}
}
それなら私はこれをしたい
class A:B(vartype somevar)
{
Asfunc2()
{
this->func(1); //basically somevar would already be filled in when called and it'd just need the 1 param.
}
}