Files
solver/MbDCode/FullRow.h
Aik-Siong Koh 475b8d16bc First commit
2023-04-26 17:23:31 -06:00

14 lines
239 B
C++

#pragma once
#include "Vector.h"
namespace MbD {
template <typename T>
class FullRow : public Vector<T>
{
public:
FullRow() {}
FullRow(int i) : Vector<T>(i) {}
FullRow(std::initializer_list<T> list) : Vector<T>{ list } {}
};
}