40 lines
992 B
C++
40 lines
992 B
C++
// Filename: noninteractiveGraphicsPipe.h
|
|
// Created by: cary (10Mar99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __NONINTERACTIVEGRAPHICSPIPE_H__
|
|
#define __NONINTERACTIVEGRAPHICSPIPE_H__
|
|
|
|
#include <pandabase.h>
|
|
|
|
#include "graphicsPipe.h"
|
|
|
|
class EXPCL_PANDA NoninteractiveGraphicsPipe : public GraphicsPipe {
|
|
public:
|
|
|
|
NoninteractiveGraphicsPipe( const PipeSpecifier& );
|
|
virtual ~NoninteractiveGraphicsPipe(void) = 0;
|
|
|
|
public:
|
|
|
|
static TypeHandle get_class_type(void);
|
|
static void init_type(void);
|
|
virtual TypeHandle get_type(void) const;
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
|
|
private:
|
|
|
|
static TypeHandle _type_handle;
|
|
|
|
protected:
|
|
|
|
NoninteractiveGraphicsPipe(void);
|
|
NoninteractiveGraphicsPipe(const NoninteractiveGraphicsPipe&);
|
|
NoninteractiveGraphicsPipe& operator=(const NoninteractiveGraphicsPipe&);
|
|
};
|
|
|
|
#include "noninteractiveGraphicsPipe.I"
|
|
|
|
#endif /* __NONINTERACTIVEGRAPHICSPIPE_H__ */
|