open_toontown_panda3d/pandatool/src/eggbase/eggReader.h

34 lines
699 B
C++

// Filename: eggReader.h
// Created by: drose (14Feb00)
//
////////////////////////////////////////////////////////////////////
#ifndef EGGREADER_H
#define EGGREADER_H
#include <pandatoolbase.h>
#include "eggBase.h"
////////////////////////////////////////////////////////////////////
// Class : EggReader
// Description : This is the base class for a program that reads egg
// files, but doesn't write an egg file.
////////////////////////////////////////////////////////////////////
class EggReader : virtual public EggBase {
public:
EggReader();
virtual EggReader *as_reader();
protected:
virtual bool handle_args(Args &args);
bool _force_complete;
};
#endif