Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "Matrix.h"
- #include <iostream>
- //Default Constructor
- Matrix::Matrix()
- : mWidth(2),
- mHeight(2)
- {
- }
- //Constructor with inputs
- Matrix::Matrix(int height, int width)
- : mHeight(height),
- mWidth(width)
- {
- int Mat[mHeight][mWidth];
- }
Add Comment
Please, Sign In to add comment