aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--default.bld2
-rw-r--r--src/config.h7
-rw-r--r--src/minicron.h7
-rw-r--r--src/optparser.h7
-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
14 files changed, 92 insertions, 1 deletions
diff --git a/default.bld b/default.bld
index ea83827..124a9ec 100644
--- a/default.bld
+++ b/default.bld
@@ -118,7 +118,7 @@ target "libbu++-r$(svnversion "-n").tar.bz2"
118 "LICENSE", 118 "LICENSE",
119 "build.conf", 119 "build.conf",
120 "Doxyfile", 120 "Doxyfile",
121 "default.bld", 121 files("*.bld"),
122 "support/vim/syntax/taf.vim", 122 "support/vim/syntax/taf.vim",
123 "support/vim/ftdetect/taf.vim", 123 "support/vim/ftdetect/taf.vim",
124 "support/vim/ftplugin/taf.vim", 124 "support/vim/ftplugin/taf.vim",
diff --git a/src/config.h b/src/config.h
index 05ef99a..ad4991e 100644
--- a/src/config.h
+++ b/src/config.h
@@ -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#ifndef BU_CONFIG_H 8#ifndef BU_CONFIG_H
2#define BU_CONFIG_H 9#define BU_CONFIG_H
3 10
diff --git a/src/minicron.h b/src/minicron.h
index 3e6beea..7475020 100644
--- a/src/minicron.h
+++ b/src/minicron.h
@@ -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#ifndef BU_MINICRON_H 8#ifndef BU_MINICRON_H
2#define BU_MINICRON_H 9#define BU_MINICRON_H
3 10
diff --git a/src/optparser.h b/src/optparser.h
index 6b0ae58..aacafc3 100644
--- a/src/optparser.h
+++ b/src/optparser.h
@@ -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#ifndef BU_OPT_PARSER_H 8#ifndef BU_OPT_PARSER_H
2#define BU_OPT_PARSER_H 9#define BU_OPT_PARSER_H
3 10
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