add part of class compoundfile

This commit is contained in:
Ivan Morozov
2022-06-16 23:29:48 +03:00
parent 014c219089
commit c3e060d13b
9 changed files with 93 additions and 18 deletions

View File

@ -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
{