first good build. Part, PartFrame, Matrix
This commit is contained in:
14
MbDCode/SparseColumn.h
Normal file
14
MbDCode/SparseColumn.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
#include "SparseVector.h"
|
||||
|
||||
namespace MbD {
|
||||
template <typename T>
|
||||
class SparseColumn : public SparseVector<T>
|
||||
{
|
||||
public:
|
||||
SparseColumn() {}
|
||||
SparseColumn(std::initializer_list<std::pair<const int, T>> list) : SparseVector<T>{ list } {}
|
||||
SparseColumn(std::initializer_list<std::initializer_list<T>> list) : SparseVector<T>{ list } {}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user