Created
November 3, 2009 03:07
-
-
Save bradtgmurray/224742 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template <int WIDTH, int HEIGHT> | |
class Matrix | |
{ | |
protected: | |
double m_data[WIDTH* HEIGHT]; | |
public: | |
Matrix(); | |
}; | |
template <int WIDTH, int HEIGHT> | |
Matrix<WIDTH, HEIGHT>::Matrix() | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment