Changeset 411

Show
Ignore:
Timestamp:
08/03/09 11:18:26 (15 years ago)
Author:
trnewman
Message:

Adding Apache license information.

Location:
vtcross/trunk
Files:
1 added
1 removed
40 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115ACLOCAL_AMFLAGS = -I m4 
    216 
  • vtcross/trunk/Makefile.common

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115CROSS_LA = ${abs_top_builddir}/src/libvtcross/libvtcross.la 
    216CROSS_SOCKETCOMM_LA = ${abs_top_builddir}/src/lib/socketcomm/libsocketcomm.la 
  • vtcross/trunk/configure.ac

    r355 r411  
     1dnl Copyright 2009 Virginia Polytechnic Institute and State University   
     2dnl  
     3dnl Licensed under the Apache License, Version 2.0 (the "License");  
     4dnl you may not use this file except in compliance with the License.  
     5dnl You may obtain a copy of the License at  
     6dnl  
     7dnl http://www.apache.org/licenses/LICENSE-2.0  
     8dnl 
     9dnl Unless required by applicable law or agreed to in writing, software  
     10dnl distributed under the License is distributed on an "AS IS" BASIS,  
     11dnl WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12dnl See the License for the specific language governing permissions and  
     13dnl limitations under the License.  
     14 
     15 
    116AC_INIT([cross], [0.1.1]) 
    217AM_INIT_AUTOMAKE([cross], [0.1.1]) 
  • vtcross/trunk/doc/Makefile.am

    r161 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
  • vtcross/trunk/reconf

    r323 r411  
    11#!/bin/sh 
     2# Copyright 2009 Virginia Polytechnic Institute and State University   
     3# 
     4# Licensed under the Apache License, Version 2.0 (the "License");  
     5# you may not use this file except in compliance with the License.  
     6# You may obtain a copy of the License at  
     7#  
     8# http://www.apache.org/licenses/LICENSE-2.0  
     9# 
     10# Unless required by applicable law or agreed to in writing, software  
     11# distributed under the License is distributed on an "AS IS" BASIS,  
     12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13# See the License for the specific language governing permissions and  
     14# limitations under the License.  
    215 
    316libtoolize && \ 
  • vtcross/trunk/src/Makefile.am

    r342 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/cognitive_engines/CBR_CE/CognitiveEngine.cpp

    r347 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
    6  
    7 /* DESCRIPTION OF FILE. 
    8  */ 
    9  
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    1016 
    1117#include <cstdlib> 
  • vtcross/trunk/src/cognitive_engines/CBR_CE/Makefile.am

    r347 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/cognitive_engines/CBR_CE/cbr.c

    r347 r411  
    1 // 
    2 // Case-based reasoner 
    3 // 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    416 
    517#include <stdlib.h> 
  • vtcross/trunk/src/cognitive_engines/CBR_CE/cbr_demo.cpp

    r347 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * TODO LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* TODO DESCRIPTION OF FILE. 
  • vtcross/trunk/src/cognitive_engines/DSA_CE/DSA_CognitiveEngine.cpp

    r392 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
    6  
    7 /* DESCRIPTION OF FILE. 
    8  */ 
    9  
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    1016 
    1117#include <cstdlib> 
  • vtcross/trunk/src/cognitive_engines/DSA_CE/DSA_Demo.cpp

    r375 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * TODO LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* TODO DESCRIPTION OF FILE. 
  • vtcross/trunk/src/cognitive_engines/DSA_CE/Makefile.am

    r376 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/cognitive_engines/DSA_CE/cbr.c

    r391 r411  
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
     16 
     17 
    118// 
    219// Case-based reasoner 
  • vtcross/trunk/src/cognitive_engines/DSA_CE/examples/libcross_demo.py

    r389 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115# Simple Python demonstration script for using 
    216# the CROSS system. 
  • vtcross/trunk/src/cognitive_engines/Makefile.am

    r348 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/include/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/include/tinyxml/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/include/vtcross/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/include/vtcross/cbr.h

    r170 r411  
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
     16 
    117// 
    218// Case-based reasoner 
  • vtcross/trunk/src/include/vtcross/common.h

    r161 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* This file is included in every source file of the VTCROSS system.  It 
  • vtcross/trunk/src/include/vtcross/components.h

    r389 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* This header exports the declarations for all VT-CROSS radio components.  It 
  • vtcross/trunk/src/include/vtcross/containers.h

    r386 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* This header contains commonly used data container structs in VT-CROSS 
  • vtcross/trunk/src/include/vtcross/debug.h

    r161 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* DESCRIPTION OF FILE. 
  • vtcross/trunk/src/include/vtcross/error.h

    r161 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* DESCRIPTION OF FILE. 
  • vtcross/trunk/src/include/vtcross/libvtcross.h

    r284 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* VTCROSS Cognitive Radio API 
  • vtcross/trunk/src/include/vtcross/socketcomm.h

    r389 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * TODO LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* TODO DESCRIPTION OF FILE. 
  • vtcross/trunk/src/lib/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/lib/socketcomm/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/lib/socketcomm/socketcomm.cpp

    r389 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * TODO LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* TODO DESCRIPTION OF FILE. 
  • vtcross/trunk/src/lib/tinyxml/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
     15 
    116include $(top_srcdir)/Makefile.common 
    217 
  • vtcross/trunk/src/policy_engines/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/policy_engines/PolicyEngine.cpp

    r205 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* DESCRIPTION OF FILE. 
  • vtcross/trunk/src/policy_engines/policy_demo.cpp

    r187 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * TODO LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* TODO DESCRIPTION OF FILE. 
  • vtcross/trunk/src/service_management_layer/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/service_management_layer/ServiceManagementLayer.cpp

    r316 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* Inter-component communication handled by sockets and FD's.   
  • vtcross/trunk/src/service_management_layer/sml_demo.cpp

    r285 r411  
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
     16 
    117#include <cstdlib> 
    218#include <cstring> 
  • vtcross/trunk/src/shell/CognitiveRadioShell.cpp

    r389 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* DESCRIPTION OF FILE. 
  • vtcross/trunk/src/shell/Makefile.am

    r323 r411  
     1# Copyright 2009 Virginia Polytechnic Institute and State University   
     2# 
     3# Licensed under the Apache License, Version 2.0 (the "License");  
     4# you may not use this file except in compliance with the License.  
     5# You may obtain a copy of the License at  
     6#  
     7# http://www.apache.org/licenses/LICENSE-2.0  
     8# 
     9# Unless required by applicable law or agreed to in writing, software  
     10# distributed under the License is distributed on an "AS IS" BASIS,  
     11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     12# See the License for the specific language governing permissions and  
     13# limitations under the License.  
     14 
    115include $(top_srcdir)/Makefile.common 
    216 
  • vtcross/trunk/src/shell/shell_demo.cpp

    r324 r411  
    1 /* Virginia Tech Cognitive Radio Open Source Systems 
    2  * Virginia Tech, 2009 
    3  * 
    4  * TODO LICENSE INFORMATION GOES HERE 
    5  */ 
     1/* 
     2 Copyright 2009 Virginia Polytechnic Institute and State University   
     3 
     4 Licensed under the Apache License, Version 2.0 (the "License");  
     5 you may not use this file except in compliance with the License.  
     6 You may obtain a copy of the License at  
     7  
     8 http://www.apache.org/licenses/LICENSE-2.0  
     9 
     10 Unless required by applicable law or agreed to in writing, software  
     11 distributed under the License is distributed on an "AS IS" BASIS,  
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
     13 See the License for the specific language governing permissions and  
     14 limitations under the License.  
     15*/ 
    616 
    717/* TODO DESCRIPTION OF FILE.