aboutsummaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-05-13 14:10:31 +0000
committerMike Buland <eichlan@xagasoft.com>2010-05-13 14:10:31 +0000
commit1838d17f22d92e24895c56d50f2e0121716ca823 (patch)
treea3505aafb6a387447c50a9d70adad28092489216 /src/tests
parent2a943828287d2a861930d3facb2333c895ada205 (diff)
downloadlibbu++-1838d17f22d92e24895c56d50f2e0121716ca823.tar.gz
libbu++-1838d17f22d92e24895c56d50f2e0121716ca823.tar.bz2
libbu++-1838d17f22d92e24895c56d50f2e0121716ca823.tar.xz
libbu++-1838d17f22d92e24895c56d50f2e0121716ca823.zip
Added license info to the top of the remaining files. I should add a check for
that to the build file or something...
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/console.cpp7
-rw-r--r--src/tests/daysinmonth.cpp7
-rw-r--r--src/tests/hash2.cpp7
-rw-r--r--src/tests/list2.cpp7
-rw-r--r--src/tests/listsort.cpp7
-rw-r--r--src/tests/minicron.cpp7
-rw-r--r--src/tests/optparser.cpp7
-rw-r--r--src/tests/queuebuf.cpp7
-rw-r--r--src/tests/sharedcore.cpp7
-rw-r--r--src/tests/socket.cpp7
10 files changed, 70 insertions, 0 deletions
diff --git a/src/tests/console.cpp b/src/tests/console.cpp
index 628482b..8d2f469 100644
--- a/src/tests/console.cpp
+++ b/src/tests/console.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include <bu/sio.h> 8#include <bu/sio.h>
2using namespace Bu; 9using namespace Bu;
3 10
diff --git a/src/tests/daysinmonth.cpp b/src/tests/daysinmonth.cpp
index 9888844..e0aafc6 100644
--- a/src/tests/daysinmonth.cpp
+++ b/src/tests/daysinmonth.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include "bu/sio.h" 8#include "bu/sio.h"
2#include "bu/util.h" 9#include "bu/util.h"
3 10
diff --git a/src/tests/hash2.cpp b/src/tests/hash2.cpp
index 24c9d8c..4db248e 100644
--- a/src/tests/hash2.cpp
+++ b/src/tests/hash2.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include <bu/fstring.h> 8#include <bu/fstring.h>
2#include <bu/hash.h> 9#include <bu/hash.h>
3 10
diff --git a/src/tests/list2.cpp b/src/tests/list2.cpp
index cd02aef..dc936d3 100644
--- a/src/tests/list2.cpp
+++ b/src/tests/list2.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include <bu/list.h> 8#include <bu/list.h>
2#include <bu/sio.h> 9#include <bu/sio.h>
3 10
diff --git a/src/tests/listsort.cpp b/src/tests/listsort.cpp
index 09c0273..60d9611 100644
--- a/src/tests/listsort.cpp
+++ b/src/tests/listsort.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include <bu/list.h> 8#include <bu/list.h>
2#include <bu/sio.h> 9#include <bu/sio.h>
3#include <bu/fstring.h> 10#include <bu/fstring.h>
diff --git a/src/tests/minicron.cpp b/src/tests/minicron.cpp
index 715a74d..8abf8ad 100644
--- a/src/tests/minicron.cpp
+++ b/src/tests/minicron.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include "bu/minicron.h" 8#include "bu/minicron.h"
2#include "bu/sio.h" 9#include "bu/sio.h"
3 10
diff --git a/src/tests/optparser.cpp b/src/tests/optparser.cpp
index 449677d..f5d1512 100644
--- a/src/tests/optparser.cpp
+++ b/src/tests/optparser.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include <bu/optparser.h> 8#include <bu/optparser.h>
2#include <bu/sio.h> 9#include <bu/sio.h>
3using namespace Bu; 10using namespace Bu;
diff --git a/src/tests/queuebuf.cpp b/src/tests/queuebuf.cpp
index 677df16..0cb8b48 100644
--- a/src/tests/queuebuf.cpp
+++ b/src/tests/queuebuf.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include <bu/queuebuf.h> 8#include <bu/queuebuf.h>
2#include <bu/sio.h> 9#include <bu/sio.h>
3 10
diff --git a/src/tests/sharedcore.cpp b/src/tests/sharedcore.cpp
index 381661a..1d0c16e 100644
--- a/src/tests/sharedcore.cpp
+++ b/src/tests/sharedcore.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include "bu/sharedcore.h" 8#include "bu/sharedcore.h"
2#include "bu/sio.h" 9#include "bu/sio.h"
3 10
diff --git a/src/tests/socket.cpp b/src/tests/socket.cpp
index 1cf63e4..ba4e9b9 100644
--- a/src/tests/socket.cpp
+++ b/src/tests/socket.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2010 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#include <bu/socket.h> 8#include <bu/socket.h>
2#include <bu/sio.h> 9#include <bu/sio.h>
3 10