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 /*************************************************************************** 00010 * RCS INFORMATION: 00011 * 00012 * $RCSfile: P_PrintTool.h,v $ 00013 * $Author: johns $ $Locker: $ $State: Exp $ 00014 * $Revision: 1.12 $ $Date: 2019/01/17 21:21:01 $ 00015 * 00016 ***************************************************************************/ 00017 00019 00024 #include "P_Tool.h" 00025 class PrintTool : public Tool { 00026 public: 00027 PrintTool(int id, VMDApp *, Displayable *); 00028 virtual void do_event(); 00029 00030 const char *type_name() const { return "print"; } 00031 private: 00032 int targetting; 00033 }; 00034 00035