00001 /* OOQP * 00002 * Authors: E. Michael Gertz, Stephen J. Wright * 00003 * (C) 2001 University of Chicago. See Copyright Notification in OOQP */ 00004 00005 #ifndef DOUBLEMATRIXHANDLE_H 00006 #define DOUBLEMATRIXHANDLE_H 00007 00008 #include "SmartPointer.h" 00009 #include "DoubleMatrix.h" 00010 00011 class DoubleStorage; 00012 typedef SmartPointer<DoubleStorage> DoubleStorageHandle; 00013 00014 class DoubleMatrix; 00015 typedef SmartPointer<DoubleMatrix> DoubleMatrixHandle; 00016 00017 class GenMatrix; 00018 typedef SmartPointer<GenMatrix> GenMatrixHandle; 00019 00020 class SymMatrix; 00021 typedef SmartPointer<SymMatrix> SymMatrixHandle; 00022 00023 #endif