// Copyright (C) 2000, International Business Machines// Corporation and others. All Rights Reserved.// This code is licensed under the terms of the Eclipse Public License (EPL).#ifndef OsiCollections_H#define OsiCollections_H#include <vector>//Forward declarationsclassOsiColCut;classOsiRowCut;classOsiCut;/* Collection Classes *//**@name Typedefs for Standard Template Library collections of Osi Objects. *///@{/// Vector of inttypedefstd::vector<int>OsiVectorInt;/// Vector of doubletypedefstd::vector<double>OsiVectorDouble;/// Vector of OsiColCut pointerstypedefstd::vector<OsiColCut*>OsiVectorColCutPtr;/// Vector of OsiRowCut pointerstypedefstd::vector<OsiRowCut*>OsiVectorRowCutPtr;/// Vector of OsiCut pointerstypedefstd::vector<OsiCut*>OsiVectorCutPtr;//@}#endif/* vi: softtabstop=2 shiftwidth=2 expandtab tabstop=2*/