12345678910111213141516171819202122232425262728293031 |
- #ifndef _EMATRIXBASE_BASICMATRIX_H
- #define _EMATRIXBASE_BASICMATRIX_H
- #include <string>
- #include <sstream>
- #include <stdexcept>
- namespace NICE {
- class MatrixBase {
- public:
-
- enum Mode {copy, external};
- };
- }
- #ifdef __GNUC__
- #endif
- #endif
|