~ubuntu-branches/debian/sid/coin2/sid

« back to all changes in this revision

Viewing changes to include/Inventor/SoInput.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-06-28 02:38:17 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080628023817-lgrh0u677j1gcqgf
Tags: 2.5.0-2
* debian/control: Change suggests from libopenal0 to libopenal0a.
  Closes: #488001.  Change ${Source-Version} to ${binary:Version}.
  Update to standards version 3.8.0.

* debian/rules: Do not ignore errors in clean rule.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
/**************************************************************************\
5
5
 *
6
6
 *  This file is part of the Coin 3D visualization library.
7
 
 *  Copyright (C) 1998-2006 by Systems in Motion.  All rights reserved.
 
7
 *  Copyright (C) 1998-2007 by Systems in Motion.  All rights reserved.
8
8
 *
9
9
 *  This library is free software; you can redistribute it and/or
10
10
 *  modify it under the terms of the GNU General Public License
103
103
  virtual SbBool readBinaryArray(int32_t * l, int length);
104
104
  virtual SbBool readBinaryArray(float * f, int length);
105
105
  virtual SbBool readBinaryArray(double * d, int length);
 
106
  SbBool readByte(int8_t & b);
 
107
  SbBool readByte(uint8_t & b);
106
108
  virtual SbBool eof(void) const;
107
109
 
108
110
  SbBool isFileVRML1(void);
185
187
  static SbStringList * dirsearchlist;
186
188
 
187
189
  SbList<SoInput_FileInfo *> filestack;
188
 
  SoInput_FileInfo * getTopOfStack(void) const;
 
190
  SoInput_FileInfo * getTopOfStack(void) const {
 
191
    return this->filestack[0];
 
192
  }
189
193
 
190
194
  // OBSOLETE, only kept for Coin 2.x ABI compatibility.
191
195
  SbDict refdict;