00001 /*************************************************************************** 00002 *cr 00003 *cr (C) Copyright 1995-2019 The Board of Trustees of the 00004 *cr University of Illinois 00005 *cr All Rights Reserved 00006 *cr 00007 ***************************************************************************/ 00008 /*************************************************************************** 00009 * RCS INFORMATION: 00010 * 00011 * $RCSfile: SnapshotDisplayDevice.h,v $ 00012 * $Author: johns $ $Locker: $ $State: Exp $ 00013 * $Revision: 1.27 $ $Date: 2020/02/26 07:21:45 $ 00014 * 00015 ***************************************************************************/ 00025 #ifndef SNAPSHOTDISPLAYDEVICE 00026 #define SNAPSHOTDISPLAYDEVICE 00027 00028 #include "FileRenderer.h" 00029 00031 class SnapshotDisplayDevice : public FileRenderer { 00032 private: 00033 DisplayDevice *display; 00034 00035 public: 00038 SnapshotDisplayDevice(DisplayDevice *); 00039 virtual int open_file(const char *filename); 00040 virtual void render(const VMDDisplayList*) {} 00041 virtual void close_file(void); 00042 }; 00043 #endif 00044