Skip to content

Instantly share code, notes, and snippets.

@bradtgmurray
Created November 3, 2009 03:07
Show Gist options
  • Save bradtgmurray/224742 to your computer and use it in GitHub Desktop.
Save bradtgmurray/224742 to your computer and use it in GitHub Desktop.
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