00001 #ifndef __NPPACKETCOMMAND_H 00002 #define __NPPACKETCOMMAND_H 00003 00004 class NpPacketCommand : public Command { 00005 public: 00006 NpPacketCommand(NpPacket::NpType); 00007 virtual string getCommandString(); 00008 virtual void run(std::ostream& out); 00009 virtual void getHtmlInterface(std::ostream& out); 00010 virtual void getHelp(std::ostream& out); 00011 private: 00012 NpPacket* m_packet; 00013 }; 00014 00015 #endif