Simon Rozman 2020-04-14 08:51:34 +02:00
parent 9671daecf4
commit fdc1e5cb73
2 changed files with 11 additions and 1 deletions

View File

@ -606,10 +606,15 @@ namespace eap
{ {
public: public:
/// ///
/// Constructs configuration /// Constructs a configuration
/// ///
packable(); packable();
///
/// Destructs the configuration
///
virtual ~packable();
/// \name BLOB management /// \name BLOB management
/// @{ /// @{

View File

@ -35,6 +35,11 @@ eap::packable::packable()
} }
eap::packable::~packable()
{
}
void eap::packable::operator<<(_Inout_ cursor_out &cursor) const void eap::packable::operator<<(_Inout_ cursor_out &cursor) const
{ {
UNREFERENCED_PARAMETER(cursor); UNREFERENCED_PARAMETER(cursor);