Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 10, 2005, 7:52:50 PM (18 years ago)
Author:
bensch
Message:

newModel new static_model class added

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/newModel/src/lib/graphics/importer/model.h

    r6016 r6021  
    1515
    1616/*!
    17  * @file abstract_model.h
    18  *  Definition of an abstract model. containing all needed for other model
     17 * @file model.h
     18 *  Definition of an abstract model.
     19 *  containing all needed for other models
    1920 */
    2021
    21 #ifndef _ABSTRACT_MODEL_H
    22 #define _ABSTRACT_MODEL_H
     22#ifndef _MODEL_H
     23#define _MODEL_H
    2324
    2425#include "base_object.h"
     
    125126
    126127//! This class defines the basic components of a model
    127 class AbstractModel : public BaseObject {
     128class Model : public BaseObject {
    128129
    129130  public:
    130     AbstractModel();
    131     virtual ~AbstractModel();
     131    Model();
     132    virtual ~Model();
     133
     134    virtual void draw() const {  }
    132135
    133136    inline const modelInfo* getModelInfo() const { return &this->pModelInfo; }
     
    158161};
    159162
    160 #endif /* _ABSTRACT_MODEL_H */
     163#endif /* _MODEL_H */
Note: See TracChangeset for help on using the changeset viewer.