matio-cpp v0.3.0
A C++ wrapper of the matio library, with memory ownership handling, to read and write .mat files.
Loading...
Searching...
No Matches
SharedMatvar.h
Go to the documentation of this file.
1#ifndef MATIOCPP_SHAREDMATVAR_H
2#define MATIOCPP_SHAREDMATVAR_H
3
4/*
5 * Copyright (C) 2020 Fondazione Istituto Italiano di Tecnologia
6 *
7 * This software may be modified and distributed under the terms of the
8 * BSD-2-Clause license (https://opensource.org/licenses/BSD-2-Clause).
9 */
10
13
14
16{
17
22
23public:
24
31
37
43
49
54
58 virtual matvar_t* get() const final;
59
63 virtual bool isShared() const final;
64
68 virtual bool duplicateMatvar(const matvar_t *inputPtr) final;
69
73 virtual bool importMatvar(matvar_t *inputPtr) final;
74
78 virtual MatvarHandler* pointerToDuplicate() const final;
79
83 virtual WeakMatvar weakOwnership() const final;
84
89
96
103
109
117
118};
119
120#endif // MATIOCPP_SHAREDMATVAR_H
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
virtual WeakMatvar weakOwnership() const final
Docs inherited.
virtual bool isShared() const final
Docs inherited.
virtual bool importMatvar(matvar_t *inputPtr) final
Docs inherited.
static SharedMatvar GetMatvarShallowDuplicate(const matvar_t *inputPtr)
Get the shallow duplicate of an input Matvar.
SharedMatvar()
Default constructor.
virtual void dropOwnedPointer(matvar_t *previouslyOwnedPointer) final
Docs inherited.
std::weak_ptr< MatvarHandler::Ownership > ownership() const
Get a weak_ptr to the ownership.
virtual matvar_t * get() const final
Docs inherited.
virtual MatvarHandler * pointerToDuplicate() const final
Docs inherited.
virtual bool duplicateMatvar(const matvar_t *inputPtr) final
Docs inherited.
SharedMatvar & operator=(const SharedMatvar &other)
Copy assignement.