|
|
|
|
@ -479,6 +479,7 @@ template size_t GncOption::get_value<size_t>() const;
|
|
|
|
|
template const char* GncOption::get_value<const char*>() const;
|
|
|
|
|
template std::string GncOption::get_value<std::string>() const;
|
|
|
|
|
template const QofInstance* GncOption::get_value<const QofInstance*>() const;
|
|
|
|
|
template const Account* GncOption::get_value<const Account*>() const;
|
|
|
|
|
template RelativeDatePeriod GncOption::get_value<RelativeDatePeriod>() const;
|
|
|
|
|
template GncOptionAccountList GncOption::get_value<GncOptionAccountList>() const;
|
|
|
|
|
template GncMultichoiceOptionIndexVec GncOption::get_value<GncMultichoiceOptionIndexVec>() const;
|
|
|
|
|
@ -491,6 +492,7 @@ template double GncOption::get_default_value<double>() const;
|
|
|
|
|
template const char* GncOption::get_default_value<const char*>() const;
|
|
|
|
|
template std::string GncOption::get_default_value<std::string>() const;
|
|
|
|
|
template const QofInstance* GncOption::get_default_value<const QofInstance*>() const;
|
|
|
|
|
template const Account* GncOption::get_default_value<const Account*>() const;
|
|
|
|
|
template RelativeDatePeriod GncOption::get_default_value<RelativeDatePeriod>() const;
|
|
|
|
|
template GncOptionAccountList GncOption::get_default_value<GncOptionAccountList>() const;
|
|
|
|
|
template GncMultichoiceOptionIndexVec GncOption::get_default_value<GncMultichoiceOptionIndexVec>() const;
|
|
|
|
|
@ -504,6 +506,7 @@ template void GncOption::set_value(char*);
|
|
|
|
|
template void GncOption::set_value(const char*);
|
|
|
|
|
template void GncOption::set_value(std::string);
|
|
|
|
|
template void GncOption::set_value(const QofInstance*);
|
|
|
|
|
template void GncOption::set_value(const Account*);
|
|
|
|
|
template void GncOption::set_value(RelativeDatePeriod);
|
|
|
|
|
template void GncOption::set_value(size_t);
|
|
|
|
|
template void GncOption::set_value(GncOptionAccountList);
|
|
|
|
|
@ -518,6 +521,7 @@ template void GncOption::set_default_value(char*);
|
|
|
|
|
template void GncOption::set_default_value(const char*);
|
|
|
|
|
template void GncOption::set_default_value(std::string);
|
|
|
|
|
template void GncOption::set_default_value(const QofInstance*);
|
|
|
|
|
template void GncOption::set_default_value(const Account*);
|
|
|
|
|
template void GncOption::set_default_value(RelativeDatePeriod);
|
|
|
|
|
template void GncOption::set_default_value(size_t);
|
|
|
|
|
template void GncOption::set_default_value(GncOptionAccountList);
|
|
|
|
|
@ -533,6 +537,7 @@ template bool GncOption::validate(double) const;
|
|
|
|
|
template bool GncOption::validate(const char*) const;
|
|
|
|
|
template bool GncOption::validate(std::string) const;
|
|
|
|
|
template bool GncOption::validate(const QofInstance*) const;
|
|
|
|
|
template bool GncOption::validate(const Account*) const;
|
|
|
|
|
template bool GncOption::validate(const QofQuery*) const;
|
|
|
|
|
template bool GncOption::validate(RelativeDatePeriod) const;
|
|
|
|
|
template bool GncOption::validate(GncMultichoiceOptionIndexVec) const;
|
|
|
|
|
|