shared_network_parser.cc 774 B

123456789101112131415161718192021222324252627282930
  1. // Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
  2. //
  3. // This Source Code Form is subject to the terms of the Mozilla Public
  4. // License, v. 2.0. If a copy of the MPL was not distributed with this
  5. // file, You can obtain one at http://mozilla.org/MPL/2.0/.
  6. #ifndef SHARED_NETWORK_PARSER_H
  7. #define SHARED_NETWORK_PARSER_H
  8. #include <cc/data.h>
  9. #include <dhcpsrv/parsers/shared_network_parser.h>
  10. #include <dhcpsrv/shared_network.h>
  11. using namespace isc::data;
  12. namespace isc {
  13. namespace dhcp {
  14. SharedNetworkParser::~SharedNetworkParser() {
  15. }
  16. SharedNetworkPtr
  17. SharedNetworkParser::parse(const ConstElementPtr& shared_network_data) {
  18. return (SharedNetworkPtr());
  19. }
  20. } // end of namespace isc::dhcp
  21. } // end of namespace isc
  22. #endif // SHARED_NETWORK_PARSER_H