/*!
 * \file      params_nas.hh
 * \brief     Header file for the parameter dictionary.
 * \author    ETSI TTF T041
 * \copyright ETSI Copyright Notification
 *            No part may be reproduced except as authorized by written permission.
 *            The copyright and the foregoing restriction extend to reproduction in all media.
 *            All rights reserved.
 * \version   0.1
 */
#pragma once

#include <map>
#include <string>
#include <vector>

#include "params.hh"

/*!
 * \class params_nas
 * \brief This class provides basic functionalities for an ITS dictionary
 */
class params_nas : public params {
public: //! \publicsection

  /*!
   * \brief Default constructor
   *        Create a new instance of the params_nas class
   */
  params_nas() : params() {};

  /*!
   * \brief Default destructor
   */
  virtual ~params_nas(){};

}; // End of class params_nas
