Files
solver/OndselSolver/FullRow.ref.h
2023-11-02 18:12:13 -05:00

14 lines
291 B
C++

#pragma once
#include "FullColumn.ref.h"
namespace MbD {
template<typename T>
class FullRow;
template<typename T>
using FRowsptr = std::shared_ptr<FullRow<T>>;
using FRowDsptr = std::shared_ptr<FullRow<double>>;
using ListFRD = std::initializer_list<FRowDsptr>;
}