mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-15 21:49:48 +08:00
add part of class compoundfile
This commit is contained in:
@ -34,6 +34,13 @@ void SVector<T>::push_back(T &&value)
|
||||
array.push_back(std::shared_ptr<T>(value));
|
||||
}
|
||||
|
||||
template<class T>
|
||||
void SVector<T>::push_back(const T &value)
|
||||
{
|
||||
isInit = true;
|
||||
array.push_back(std::shared_ptr<T>(value));
|
||||
}
|
||||
|
||||
template<class T>
|
||||
std::shared_ptr<T> SVector<T>::back() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user