I’m working with the Apose.Slides C++ library, using C++ 20 and g++ compiler / linker. I have this class: class ChartDataCell : public AsposeObjectWrapper<IChartDataCell>, public Php::Base { public: ChartDataCell(System::SharedPtr<IChartDataCell> cell) : AsposeObjectWrapper<IChartDataCell>(cell) {}; void __construct(Php::Parameters ¶ms); Php::Value get_Value(); }; This inherits from a template class and a normal class. I use this template class everywhere ..
Recent Comments