add missing license headers
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Wed May 07 13:47:19 2008 -0700 (21 months ago)
changeset 30509cc612c6cd32
parent 3049 519a31d1729f
child 3051 399d3858d190
add missing license headers
src/common/tag-buffer.cc
src/common/tag-buffer.h
src/common/tag-list.cc
src/common/tag-list.h
src/common/tag.cc
src/common/tag.h
     1.1 --- a/src/common/tag-buffer.cc	Wed May 07 13:45:57 2008 -0700
     1.2 +++ b/src/common/tag-buffer.cc	Wed May 07 13:47:19 2008 -0700
     1.3 @@ -1,3 +1,22 @@
     1.4 +/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
     1.5 +/*
     1.6 + * Copyright (c) 2008 INRIA
     1.7 + *
     1.8 + * This program is free software; you can redistribute it and/or modify
     1.9 + * it under the terms of the GNU General Public License version 2 as
    1.10 + * published by the Free Software Foundation;
    1.11 + *
    1.12 + * This program is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 + * GNU General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU General Public License
    1.18 + * along with this program; if not, write to the Free Software
    1.19 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.20 + *
    1.21 + * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
    1.22 + */
    1.23  #include "tag-buffer.h"
    1.24  #include "ns3/assert.h"
    1.25  #include <string.h>
     2.1 --- a/src/common/tag-buffer.h	Wed May 07 13:45:57 2008 -0700
     2.2 +++ b/src/common/tag-buffer.h	Wed May 07 13:47:19 2008 -0700
     2.3 @@ -1,3 +1,22 @@
     2.4 +/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
     2.5 +/*
     2.6 + * Copyright (c) 2008 INRIA
     2.7 + *
     2.8 + * This program is free software; you can redistribute it and/or modify
     2.9 + * it under the terms of the GNU General Public License version 2 as
    2.10 + * published by the Free Software Foundation;
    2.11 + *
    2.12 + * This program is distributed in the hope that it will be useful,
    2.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.15 + * GNU General Public License for more details.
    2.16 + *
    2.17 + * You should have received a copy of the GNU General Public License
    2.18 + * along with this program; if not, write to the Free Software
    2.19 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    2.20 + *
    2.21 + * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
    2.22 + */
    2.23  #ifndef TAG_BUFFER_H
    2.24  #define TAG_BUFFER_H
    2.25  
     3.1 --- a/src/common/tag-list.cc	Wed May 07 13:45:57 2008 -0700
     3.2 +++ b/src/common/tag-list.cc	Wed May 07 13:47:19 2008 -0700
     3.3 @@ -1,3 +1,22 @@
     3.4 +/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
     3.5 +/*
     3.6 + * Copyright (c) 2008 INRIA
     3.7 + *
     3.8 + * This program is free software; you can redistribute it and/or modify
     3.9 + * it under the terms of the GNU General Public License version 2 as
    3.10 + * published by the Free Software Foundation;
    3.11 + *
    3.12 + * This program is distributed in the hope that it will be useful,
    3.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    3.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    3.15 + * GNU General Public License for more details.
    3.16 + *
    3.17 + * You should have received a copy of the GNU General Public License
    3.18 + * along with this program; if not, write to the Free Software
    3.19 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    3.20 + *
    3.21 + * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
    3.22 + */
    3.23  #include "tag-list.h"
    3.24  #include <vector>
    3.25  
     4.1 --- a/src/common/tag-list.h	Wed May 07 13:45:57 2008 -0700
     4.2 +++ b/src/common/tag-list.h	Wed May 07 13:47:19 2008 -0700
     4.3 @@ -1,3 +1,22 @@
     4.4 +/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
     4.5 +/*
     4.6 + * Copyright (c) 2008 INRIA
     4.7 + *
     4.8 + * This program is free software; you can redistribute it and/or modify
     4.9 + * it under the terms of the GNU General Public License version 2 as
    4.10 + * published by the Free Software Foundation;
    4.11 + *
    4.12 + * This program is distributed in the hope that it will be useful,
    4.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    4.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    4.15 + * GNU General Public License for more details.
    4.16 + *
    4.17 + * You should have received a copy of the GNU General Public License
    4.18 + * along with this program; if not, write to the Free Software
    4.19 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    4.20 + *
    4.21 + * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
    4.22 + */
    4.23  #ifndef TAG_LIST_H
    4.24  #define TAG_LIST_H
    4.25  
     5.1 --- a/src/common/tag.cc	Wed May 07 13:45:57 2008 -0700
     5.2 +++ b/src/common/tag.cc	Wed May 07 13:47:19 2008 -0700
     5.3 @@ -1,3 +1,22 @@
     5.4 +/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
     5.5 +/*
     5.6 + * Copyright (c) 2008 INRIA
     5.7 + *
     5.8 + * This program is free software; you can redistribute it and/or modify
     5.9 + * it under the terms of the GNU General Public License version 2 as
    5.10 + * published by the Free Software Foundation;
    5.11 + *
    5.12 + * This program is distributed in the hope that it will be useful,
    5.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    5.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    5.15 + * GNU General Public License for more details.
    5.16 + *
    5.17 + * You should have received a copy of the GNU General Public License
    5.18 + * along with this program; if not, write to the Free Software
    5.19 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    5.20 + *
    5.21 + * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
    5.22 + */
    5.23  #include "tag.h"
    5.24  
    5.25  namespace ns3 {
     6.1 --- a/src/common/tag.h	Wed May 07 13:45:57 2008 -0700
     6.2 +++ b/src/common/tag.h	Wed May 07 13:47:19 2008 -0700
     6.3 @@ -1,3 +1,22 @@
     6.4 +/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
     6.5 +/*
     6.6 + * Copyright (c) 2008 INRIA
     6.7 + *
     6.8 + * This program is free software; you can redistribute it and/or modify
     6.9 + * it under the terms of the GNU General Public License version 2 as
    6.10 + * published by the Free Software Foundation;
    6.11 + *
    6.12 + * This program is distributed in the hope that it will be useful,
    6.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    6.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    6.15 + * GNU General Public License for more details.
    6.16 + *
    6.17 + * You should have received a copy of the GNU General Public License
    6.18 + * along with this program; if not, write to the Free Software
    6.19 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    6.20 + *
    6.21 + * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
    6.22 + */
    6.23  #ifndef TAG_H
    6.24  #define TAG_H
    6.25