# HG changeset patch # User jwe # Date 770864348 0 # Node ID 0bfa99f634be780a578605c0fb43adba1dace33c # Parent 07fabd96ac6a8abdda092a6309b2b450c677a8c6 [project @ 1994-06-06 00:59:08 by jwe] .. diff --git a/liboctave/QP.cc b/liboctave/QP.cc --- a/liboctave/QP.cc +++ b/liboctave/QP.cc @@ -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) {} diff --git a/liboctave/QP.h b/liboctave/QP.h --- a/liboctave/QP.h +++ b/liboctave/QP.h @@ -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"