akashi-esquizolandia/core/include/packet/packet_info.h
scatterflower ca84b54597
Replace packet handler with templates (#300)
* Replace packet handler with templates

* Move all packet functions into classes

* Liberal use of Q_UNSUED

* Add correct argument count to packets

* Fix windows build issues

* Partially implement argument type validation
* Where applicable.
* Checking if we can convert from a string to a string would be useless

* Fix unit tests for AOPacket

Co-authored-by: scatterflower <marisa@scatterflower.online>
Co-authored-by: Salanto <62221668+Salanto@users.noreply.github.com>
2022-07-07 10:33:41 -05:00

15 lines
411 B
C++

#ifndef PACKET_INFO_H
#define PACKET_INFO_H
#include "include/acl_roles_handler.h"
/// Describes a packet's interpretation details.
class PacketInfo
{
public:
ACLRole::Permission acl_permission; //!< The permissions necessary for the packet.
int min_args; //!< The minimum arguments needed for the packet to be interpreted correctly / make sense.
QString header;
};
#endif