Guest User

Untitled

a guest
Apr 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. template <int WIDTH, int HEIGHT>
  2. class Matrix
  3. {
  4. protected:
  5. double m_data[WIDTH* HEIGHT];
  6.  
  7. public:
  8. Matrix();
  9. };
  10.  
  11. template <int WIDTH, int HEIGHT>
  12. Matrix<WIDTH, HEIGHT>::Matrix()
  13. {
  14. }
Add Comment
Please, Sign In to add comment