Fixed fields not being public

This commit is contained in:
Ruakij 2021-11-22 15:39:02 +01:00
parent 035491668a
commit f834ec7134
2 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#include <string>
class BeaconPacket : Packet{
std::string SSID;
public:
};
#endif /* FDDB997A_BCD3_4056_BFEA_9FF6A548DACF */

View File

@ -5,6 +5,7 @@
#include <string>
class ProbeRequestPacket : Packet{
public:
std::string requestSSID;
};