00001 #ifndef __PRIORITYPACKETQUEUECOMMAND_H 00002 #define __PRIORITYPACKETQUEUECOMMAND_H 00003 00004 class PriorityPacketQueueCommand : public Command { 00005 public: 00006 PriorityPacketQueueCommand(); 00007 virtual void run(std::ostream&); 00008 virtual void getHtmlInterface(std::ostream&); 00009 virtual string getCommandString(); 00010 private: 00011 PriorityPacketQueue* m_ppq; 00012 }; 00013 00014 #endif 00015