Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2758 in orxonox.OLD for orxonox/branches/importer/importer/array.h


Ignore:
Timestamp:
Nov 9, 2004, 2:01:18 AM (20 years ago)
Author:
bensch
Message:

orxonox/branches/importer: error resolved due to to short resize

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/importer/importer/array.h

    r2754 r2758  
    55 public:
    66  Array ();
    7   Array (int arraySize);
     7  Array (unsigned int arraySize);
    88
    9   void createArray (int newArraySize);
    10   void resizeArray (int newSize);
     9  void createArray (unsigned int newArraySize);
     10  void resizeArray (unsigned int newSize);
    1111  void finalizeArray (void);
    1212  void addEntry (GLfloat entry);
     
    1515  GLfloat* getArray ();
    1616
     17  void debug(void);
    1718 private:
    1819  GLfloat* array;
    19   int arraySize;
    20   int entryCount;
     20  unsigned int arraySize;
     21  unsigned int entryCount;
    2122
    2223};
Note: See TracChangeset for help on using the changeset viewer.