changeset 463:0bfa99f634be

[project @ 1994-06-06 00:59:08 by jwe] ..
author jwe
date Mon, 06 Jun 1994 00:59:08 +0000
parents 07fabd96ac6a
children ac2509294b09
files liboctave/QP.cc liboctave/QP.h
diffstat 2 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/QP.cc	Mon Jun 06 00:58:18 1994 +0000
+++ b/liboctave/QP.cc	Mon Jun 06 00:59:08 1994 +0000
@@ -1,7 +1,7 @@
 // QP.cc                                                -*- C++ -*-
 /*
 
-Copyright (C) 1992, 1993 John W. Eaton
+Copyright (C) 1992, 1993, 1994 John W. Eaton
 
 This file is part of Octave.
 
@@ -25,6 +25,10 @@
 #include "config.h"
 #endif
 
+#if defined (__GNUG__)
+#pragma implementation
+#endif
+
 #include "QP.h"
 
 QP::QP (void) {}
--- a/liboctave/QP.h	Mon Jun 06 00:58:18 1994 +0000
+++ b/liboctave/QP.h	Mon Jun 06 00:59:08 1994 +0000
@@ -24,7 +24,12 @@
 #if !defined (octave_QP_h)
 #define octave_QP_h 1
 
-#include "Matrix.h"
+#if defined (__GNUG__)
+#pragma interface
+#endif
+
+#include "dMatrix.h"
+#include "dColVector.h"
 #include "Bounds.h"
 #include "LinConst.h"