20 lines
447 B
C++
20 lines
447 B
C++
#pragma once
|
|
|
|
#include "FullColumn.ref.h"
|
|
|
|
namespace MbD {
|
|
class FullMatrixDouble;
|
|
|
|
// using FMatDsptr = std::shared_ptr<MbD::FullMatrixDouble>;
|
|
|
|
// template<typename T>
|
|
// using FMatsptr = std::shared_ptr<FullMatrix<T>>;
|
|
|
|
// using FMatFColDsptr = std::shared_ptr<FullMatrix<FColDsptr>>;
|
|
// using FMatFMatDsptr = std::shared_ptr<FullMatrix<FMatDsptr>>;
|
|
//
|
|
// using FColFMatDsptr = std::shared_ptr<FullColumn<FMatDsptr>>;
|
|
}
|
|
|
|
|