src/core/iid-manager.h
author Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
Thu, 03 May 2007 10:34:35 +0200
changeset 507 79e688066a2f
permissions -rw-r--r--
airplane COM code

/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2007 INRIA
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
 */
#ifndef IID_MANAGER_H
#define IID_MANAGER_H

#include <stdint.h>
#include <string>

namespace ns3 {

class IidManager
{
public:
  static uint32_t Allocate (std::string name);
};

} // namespace ns3


#endif /* IID_MANAGER_H */