/* $Revision: 1.2 $ */
// Copyright (c) 1995-1998, The MathWorks, Inc. All Rights Reserved.
// matlabmtx.h
// Peter Webb, June 1997
//
// All files in the C++ Math Library should include this file; it is the
// interface between the C++ Math Library and the matrix structure. It also
// attempts to eliminate platform dependencies by including version.h and
// mathwork.h.

#ifndef matlabmtx_h
#define matlabmtx_h

#include "version.h"
#include "mathwork.h"

#include "matrix.h"

typedef mxArray MatlabMatrix;


#endif

