aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/archival.cpp7
-rw-r--r--src/archive.cpp7
-rw-r--r--src/array.cpp7
-rw-r--r--src/atom.cpp7
-rw-r--r--src/bzip2.cpp7
-rw-r--r--src/client.cpp7
-rw-r--r--src/doxy/archives.dox7
-rw-r--r--src/doxy/groups.dox7
-rw-r--r--src/doxy/main.dox7
-rw-r--r--src/doxy/servers.dox7
-rw-r--r--src/doxy/streams.dox7
-rw-r--r--src/doxy/threading.dox7
-rw-r--r--src/entities/bu-class18
-rw-r--r--src/exceptionbase.cpp7
-rw-r--r--src/exceptions.cpp7
-rw-r--r--src/file.cpp7
-rw-r--r--src/filter.cpp7
-rw-r--r--src/formula.cpp7
-rw-r--r--src/fstring.cpp7
-rw-r--r--src/hash.cpp7
-rw-r--r--src/inprogress/xmldocument.cpp7
-rw-r--r--src/inprogress/xmldocument.h7
-rw-r--r--src/inprogress/xmlnode.cpp7
-rw-r--r--src/inprogress/xmlnode.h7
-rw-r--r--src/inprogress/xmlreader.cpp7
-rw-r--r--src/inprogress/xmlreader.h7
-rw-r--r--src/inprogress/xmlwriter.cpp7
-rw-r--r--src/inprogress/xmlwriter.h7
-rw-r--r--src/ito.cpp7
-rw-r--r--src/itocondition.cpp7
-rw-r--r--src/itomutex.cpp7
-rw-r--r--src/itoserver.cpp7
-rw-r--r--src/linkmessage.cpp7
-rw-r--r--src/list.cpp7
-rw-r--r--src/logger.cpp7
-rw-r--r--src/membuf.cpp7
-rw-r--r--src/paramproc.cpp7
-rw-r--r--src/plugger.cpp7
-rw-r--r--src/programchain.cpp7
-rw-r--r--src/programlink.cpp7
-rw-r--r--src/protocol.cpp7
-rw-r--r--src/protocolhttp.cpp7
-rw-r--r--src/protocoltelnet.cpp7
-rw-r--r--src/queue.cpp7
-rw-r--r--src/ringbuffer.cpp7
-rw-r--r--src/server.cpp7
-rw-r--r--src/serversocket.cpp7
-rw-r--r--src/set.cpp7
-rw-r--r--src/socket.cpp7
-rw-r--r--src/sptr.cpp7
-rw-r--r--src/stack.cpp7
-rw-r--r--src/stream.cpp7
-rw-r--r--src/tafnode.cpp7
-rw-r--r--src/tafreader.cpp7
-rw-r--r--src/tafwriter.cpp7
-rw-r--r--src/tests/archive.cpp7
-rw-r--r--src/tests/atom.cpp7
-rw-r--r--src/tests/bzip2.cpp7
-rw-r--r--src/tests/formula.cpp7
-rw-r--r--src/tests/fstratsptr.cpp7
-rw-r--r--src/tests/fstrformat.cpp7
-rw-r--r--src/tests/fstring.cpp7
-rw-r--r--src/tests/fstrstd.cpp7
-rw-r--r--src/tests/hash.cpp7
-rw-r--r--src/tests/itoqueue1.cpp7
-rw-r--r--src/tests/itoqueue2.cpp7
-rw-r--r--src/tests/itoserver.cpp7
-rw-r--r--src/tests/list.cpp7
-rw-r--r--src/tests/logger.cpp7
-rw-r--r--src/tests/ringbuffer.cpp7
-rw-r--r--src/tests/size.cpp7
-rw-r--r--src/tests/socketblock.cpp7
-rw-r--r--src/tests/taf.cpp7
-rw-r--r--src/tests/telnetsrv.cpp7
-rw-r--r--src/unit/file.cpp7
-rw-r--r--src/unit/fstring.cpp7
-rw-r--r--src/unit/hash.cpp7
-rw-r--r--src/unit/membuf.cpp7
-rw-r--r--src/unit/taf.cpp7
-rw-r--r--src/unitsuite.cpp7
80 files changed, 569 insertions, 2 deletions
diff --git a/src/archival.cpp b/src/archival.cpp
index 79c28f1..05ad786 100644
--- a/src/archival.cpp
+++ b/src/archival.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "archival.h" 8#include "archival.h"
2 9
3Bu::Archival::Archival() 10Bu::Archival::Archival()
diff --git a/src/archive.cpp b/src/archive.cpp
index 11c632a..5ac2877 100644
--- a/src/archive.cpp
+++ b/src/archive.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "archive.h" 8#include "archive.h"
2 9
3Bu::Archive::Archive( Stream &rStream, bool bLoading ) : 10Bu::Archive::Archive( Stream &rStream, bool bLoading ) :
diff --git a/src/array.cpp b/src/array.cpp
index f80a99c..5e7b6b5 100644
--- a/src/array.cpp
+++ b/src/array.cpp
@@ -1,2 +1,9 @@
1/*
2 * Copyright (C) 2007 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/array.h" 8#include "bu/array.h"
2 9
diff --git a/src/atom.cpp b/src/atom.cpp
index f966bfc..0c07223 100644
--- a/src/atom.cpp
+++ b/src/atom.cpp
@@ -1 +1,8 @@
1/*
2 * Copyright (C) 2007 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/atom.h" 8#include "bu/atom.h"
diff --git a/src/bzip2.cpp b/src/bzip2.cpp
index fbe5712..a41d499 100644
--- a/src/bzip2.cpp
+++ b/src/bzip2.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/bzip2.h" 8#include "bu/bzip2.h"
2#include "bu/exceptions.h" 9#include "bu/exceptions.h"
3 10
diff --git a/src/client.cpp b/src/client.cpp
index f69ea24..1ef9151 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/client.h" 8#include "bu/client.h"
2#include "bu/socket.h" 9#include "bu/socket.h"
3#include <stdlib.h> 10#include <stdlib.h>
diff --git a/src/doxy/archives.dox b/src/doxy/archives.dox
index 3b96aa3..4c92f02 100644
--- a/src/doxy/archives.dox
+++ b/src/doxy/archives.dox
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/** 8/**
2 *@page howto_archives Archiving Your Data a.k.a. Serialization 9 *@page howto_archives Archiving Your Data a.k.a. Serialization
3 * 10 *
diff --git a/src/doxy/groups.dox b/src/doxy/groups.dox
index 7bff7a7..4f2b620 100644
--- a/src/doxy/groups.dox
+++ b/src/doxy/groups.dox
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/** 8/**
2 *@defgroup Threading 9 *@defgroup Threading
3 * Threads are awesome. 10 * Threads are awesome.
diff --git a/src/doxy/main.dox b/src/doxy/main.dox
index 7268890..8f5c2b6 100644
--- a/src/doxy/main.dox
+++ b/src/doxy/main.dox
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/** 8/**
2 *@mainpage libbu++ utility library 9 *@mainpage libbu++ utility library
3 * 10 *
diff --git a/src/doxy/servers.dox b/src/doxy/servers.dox
index 0ba4bb1..a91f51e 100644
--- a/src/doxy/servers.dox
+++ b/src/doxy/servers.dox
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/** 8/**
2 *@page howto_servers Creating Internet Servers 9 *@page howto_servers Creating Internet Servers
3 * 10 *
diff --git a/src/doxy/streams.dox b/src/doxy/streams.dox
index 65f01d7..87db151 100644
--- a/src/doxy/streams.dox
+++ b/src/doxy/streams.dox
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/** 8/**
2 *@page howto_streams Working With Streams 9 *@page howto_streams Working With Streams
3 * 10 *
diff --git a/src/doxy/threading.dox b/src/doxy/threading.dox
index 0ae5325..aa0f0e0 100644
--- a/src/doxy/threading.dox
+++ b/src/doxy/threading.dox
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/** 8/**
2 *@page howto_threading Making Applications Multi-threaded 9 *@page howto_threading Making Applications Multi-threaded
3 * 10 *
diff --git a/src/entities/bu-class b/src/entities/bu-class
index 7b25291..abe503b 100644
--- a/src/entities/bu-class
+++ b/src/entities/bu-class
@@ -5,7 +5,14 @@
5 <file 5 <file
6 name="header" 6 name="header"
7 filename="{=name:%tolower}.h" 7 filename="{=name:%tolower}.h"
8>#ifndef {=name:%uccsplit:%toupper}_H 8>/*
9 * Copyright (C) 2007 Xagasoft, All rights reserved.
10 *
11 * This file is part of the libbu++ library and is released under the
12 * terms of the license contained in the file LICENSE.
13 */
14
15#ifndef {=name:%uccsplit:%toupper}_H
9#define {=name:%uccsplit:%toupper}_H 16#define {=name:%uccsplit:%toupper}_H
10 17
11#include &lt;stdint.h&gt; 18#include &lt;stdint.h&gt;
@@ -33,7 +40,14 @@
33 <file 40 <file
34 name="source" 41 name="source"
35 filename="{=name:%tolower}.cpp" 42 filename="{=name:%tolower}.cpp"
36>#include "bu/{=name:%tolower}.h" 43 >/*
44 * Copyright (C) 2007 Xagasoft, All rights reserved.
45 *
46 * This file is part of the libbu++ library and is released under the
47 * terms of the license contained in the file LICENSE.
48 */
49
50#include "bu/{=name:%tolower}.h"
37 51
38using namespace Bu; 52using namespace Bu;
39 53
diff --git a/src/exceptionbase.cpp b/src/exceptionbase.cpp
index 73a7b0e..e25997a 100644
--- a/src/exceptionbase.cpp
+++ b/src/exceptionbase.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "exceptionbase.h" 8#include "exceptionbase.h"
2#include <stdarg.h> 9#include <stdarg.h>
3 10
diff --git a/src/exceptions.cpp b/src/exceptions.cpp
index 50b95c3..562777e 100644
--- a/src/exceptions.cpp
+++ b/src/exceptions.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "exceptions.h" 8#include "exceptions.h"
2#include <stdarg.h> 9#include <stdarg.h>
3 10
diff --git a/src/file.cpp b/src/file.cpp
index 0e85853..573667c 100644
--- a/src/file.cpp
+++ b/src/file.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "file.h" 8#include "file.h"
2#include "exceptions.h" 9#include "exceptions.h"
3#include <errno.h> 10#include <errno.h>
diff --git a/src/filter.cpp b/src/filter.cpp
index 96a8694..c28e524 100644
--- a/src/filter.cpp
+++ b/src/filter.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/filter.h" 8#include "bu/filter.h"
2 9
3Bu::Filter::Filter( Bu::Stream &rNext ) : 10Bu::Filter::Filter( Bu::Stream &rNext ) :
diff --git a/src/formula.cpp b/src/formula.cpp
index c32386e..cef1323 100644
--- a/src/formula.cpp
+++ b/src/formula.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "formula.h" 8#include "formula.h"
2 9
3subExceptionDef( ParseException ); 10subExceptionDef( ParseException );
diff --git a/src/fstring.cpp b/src/fstring.cpp
index 429dfef..f1ddd2c 100644
--- a/src/fstring.cpp
+++ b/src/fstring.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "fstring.h" 8#include "fstring.h"
2#include "hash.h" 9#include "hash.h"
3 10
diff --git a/src/hash.cpp b/src/hash.cpp
index 9b8a1c1..b07991a 100644
--- a/src/hash.cpp
+++ b/src/hash.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "hash.h" 8#include "hash.h"
2 9
3namespace Bu { subExceptionDef( HashException ) } 10namespace Bu { subExceptionDef( HashException ) }
diff --git a/src/inprogress/xmldocument.cpp b/src/inprogress/xmldocument.cpp
index cb21826..3397d5c 100644
--- a/src/inprogress/xmldocument.cpp
+++ b/src/inprogress/xmldocument.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "xmldocument.h" 8#include "xmldocument.h"
2 9
3Bu::XmlDocument::XmlDocument() 10Bu::XmlDocument::XmlDocument()
diff --git a/src/inprogress/xmldocument.h b/src/inprogress/xmldocument.h
index e16e3ea..f95919a 100644
--- a/src/inprogress/xmldocument.h
+++ b/src/inprogress/xmldocument.h
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 XML_DOCUMENT_H 8#ifndef XML_DOCUMENT_H
2#define XML_DOCUMENT_H 9#define XML_DOCUMENT_H
3 10
diff --git a/src/inprogress/xmlnode.cpp b/src/inprogress/xmlnode.cpp
index 58ef5c5..9114dcf 100644
--- a/src/inprogress/xmlnode.cpp
+++ b/src/inprogress/xmlnode.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "xmlnode.h" 8#include "xmlnode.h"
2 9
3Bu::XmlNode::XmlNode() 10Bu::XmlNode::XmlNode()
diff --git a/src/inprogress/xmlnode.h b/src/inprogress/xmlnode.h
index cd9961a..3683728 100644
--- a/src/inprogress/xmlnode.h
+++ b/src/inprogress/xmlnode.h
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 XML_NODE_H 8#ifndef XML_NODE_H
2#define XML_NODE_H 9#define XML_NODE_H
3 10
diff --git a/src/inprogress/xmlreader.cpp b/src/inprogress/xmlreader.cpp
index bd241cf..85f500b 100644
--- a/src/inprogress/xmlreader.cpp
+++ b/src/inprogress/xmlreader.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "xmlreader.h" 8#include "xmlreader.h"
2 9
3Bu::XmlReader::XmlReader( Bu::Stream &sIn ) : 10Bu::XmlReader::XmlReader( Bu::Stream &sIn ) :
diff --git a/src/inprogress/xmlreader.h b/src/inprogress/xmlreader.h
index 708a386..7e23a8a 100644
--- a/src/inprogress/xmlreader.h
+++ b/src/inprogress/xmlreader.h
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 XML_READER_H 8#ifndef XML_READER_H
2#define XML_READER_H 9#define XML_READER_H
3 10
diff --git a/src/inprogress/xmlwriter.cpp b/src/inprogress/xmlwriter.cpp
index 23a5175..d3966c2 100644
--- a/src/inprogress/xmlwriter.cpp
+++ b/src/inprogress/xmlwriter.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "xmlwriter.h" 8#include "xmlwriter.h"
2 9
3Bu::XmlWriter::XmlWriter() 10Bu::XmlWriter::XmlWriter()
diff --git a/src/inprogress/xmlwriter.h b/src/inprogress/xmlwriter.h
index 796d6fb..ce67d0b 100644
--- a/src/inprogress/xmlwriter.h
+++ b/src/inprogress/xmlwriter.h
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 XML_WRITER_H 8#ifndef XML_WRITER_H
2#define XML_WRITER_H 9#define XML_WRITER_H
3 10
diff --git a/src/ito.cpp b/src/ito.cpp
index 231e822..8df61c5 100644
--- a/src/ito.cpp
+++ b/src/ito.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "ito.h" 8#include "ito.h"
2#include "osx_compatibility.h" 9#include "osx_compatibility.h"
3 10
diff --git a/src/itocondition.cpp b/src/itocondition.cpp
index d8f5375..0f64a69 100644
--- a/src/itocondition.cpp
+++ b/src/itocondition.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <sys/time.h> 8#include <sys/time.h>
2 9
3#include "itocondition.h" 10#include "itocondition.h"
diff --git a/src/itomutex.cpp b/src/itomutex.cpp
index dc51af9..5ba4f50 100644
--- a/src/itomutex.cpp
+++ b/src/itomutex.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "itomutex.h" 8#include "itomutex.h"
2 9
3Bu::ItoMutex::ItoMutex() 10Bu::ItoMutex::ItoMutex()
diff --git a/src/itoserver.cpp b/src/itoserver.cpp
index d09651b..8bdd894 100644
--- a/src/itoserver.cpp
+++ b/src/itoserver.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/itoserver.h" 8#include "bu/itoserver.h"
2#include <errno.h> 9#include <errno.h>
3#include "bu/serversocket.h" 10#include "bu/serversocket.h"
diff --git a/src/linkmessage.cpp b/src/linkmessage.cpp
index abe113c..111790d 100644
--- a/src/linkmessage.cpp
+++ b/src/linkmessage.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/linkmessage.h" 8#include "bu/linkmessage.h"
2 9
3Bu::LinkMessage::LinkMessage( int nNewMsg ) 10Bu::LinkMessage::LinkMessage( int nNewMsg )
diff --git a/src/list.cpp b/src/list.cpp
index abe92ad..ef450bc 100644
--- a/src/list.cpp
+++ b/src/list.cpp
@@ -1,2 +1,9 @@
1/*
2 * Copyright (C) 2007 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 9
diff --git a/src/logger.cpp b/src/logger.cpp
index 91679ff..39649c5 100644
--- a/src/logger.cpp
+++ b/src/logger.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/logger.h" 8#include "bu/logger.h"
2#include <stdarg.h> 9#include <stdarg.h>
3#include <time.h> 10#include <time.h>
diff --git a/src/membuf.cpp b/src/membuf.cpp
index 45ff5bd..d5e8158 100644
--- a/src/membuf.cpp
+++ b/src/membuf.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/membuf.h" 8#include "bu/membuf.h"
2 9
3using namespace Bu; 10using namespace Bu;
diff --git a/src/paramproc.cpp b/src/paramproc.cpp
index c197e9c..f016b78 100644
--- a/src/paramproc.cpp
+++ b/src/paramproc.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "paramproc.h" 8#include "paramproc.h"
2#include <stdio.h> 9#include <stdio.h>
3 10
diff --git a/src/plugger.cpp b/src/plugger.cpp
index f3bfa67..ff1f3d6 100644
--- a/src/plugger.cpp
+++ b/src/plugger.cpp
@@ -1 +1,8 @@
1/*
2 * Copyright (C) 2007 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 "plugger.h" 8#include "plugger.h"
diff --git a/src/programchain.cpp b/src/programchain.cpp
index 0bb7a77..5cc1d60 100644
--- a/src/programchain.cpp
+++ b/src/programchain.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <stdlib.h> 8#include <stdlib.h>
2#include "bu/programchain.h" 9#include "bu/programchain.h"
3#include "bu/programlink.h" 10#include "bu/programlink.h"
diff --git a/src/programlink.cpp b/src/programlink.cpp
index e5c624c..ca84fd6 100644
--- a/src/programlink.cpp
+++ b/src/programlink.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/programlink.h" 8#include "bu/programlink.h"
2#include "bu/programchain.h" 9#include "bu/programchain.h"
3 10
diff --git a/src/protocol.cpp b/src/protocol.cpp
index 0976b3b..7a59586 100644
--- a/src/protocol.cpp
+++ b/src/protocol.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/protocol.h" 8#include "bu/protocol.h"
2 9
3using namespace Bu; 10using namespace Bu;
diff --git a/src/protocolhttp.cpp b/src/protocolhttp.cpp
index ed303b6..1f00d3a 100644
--- a/src/protocolhttp.cpp
+++ b/src/protocolhttp.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <dirent.h> 8#include <dirent.h>
2#include <sys/wait.h> 9#include <sys/wait.h>
3#include <errno.h> 10#include <errno.h>
diff --git a/src/protocoltelnet.cpp b/src/protocoltelnet.cpp
index 22c988e..5b47a45 100644
--- a/src/protocoltelnet.cpp
+++ b/src/protocoltelnet.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/protocoltelnet.h" 8#include "bu/protocoltelnet.h"
2#include "bu/client.h" 9#include "bu/client.h"
3 10
diff --git a/src/queue.cpp b/src/queue.cpp
index 8b13789..2e4c684 100644
--- a/src/queue.cpp
+++ b/src/queue.cpp
@@ -1 +1,8 @@
1/*
2 * Copyright (C) 2007 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 */
1 7
8#include "queue.h"
diff --git a/src/ringbuffer.cpp b/src/ringbuffer.cpp
index feb9bc7..16d2131 100644
--- a/src/ringbuffer.cpp
+++ b/src/ringbuffer.cpp
@@ -1,2 +1,9 @@
1/*
2 * Copyright (C) 2007 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/ringbuffer.h" 8#include "bu/ringbuffer.h"
2 9
diff --git a/src/server.cpp b/src/server.cpp
index 29d4822..861e2e3 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/server.h" 8#include "bu/server.h"
2#include <errno.h> 9#include <errno.h>
3#include "bu/serversocket.h" 10#include "bu/serversocket.h"
diff --git a/src/serversocket.cpp b/src/serversocket.cpp
index 010c562..9f483cd 100644
--- a/src/serversocket.cpp
+++ b/src/serversocket.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <time.h> 8#include <time.h>
2#include <string.h> 9#include <string.h>
3#include <stdio.h> 10#include <stdio.h>
diff --git a/src/set.cpp b/src/set.cpp
index 69f4996..f8a70a0 100644
--- a/src/set.cpp
+++ b/src/set.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "set.h" 8#include "set.h"
2 9
3namespace Bu { subExceptionDef( SetException ) } 10namespace Bu { subExceptionDef( SetException ) }
diff --git a/src/socket.cpp b/src/socket.cpp
index 73d52e4..7b55c4b 100644
--- a/src/socket.cpp
+++ b/src/socket.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <string.h> 8#include <string.h>
2#include <stdio.h> 9#include <stdio.h>
3#include <errno.h> 10#include <errno.h>
diff --git a/src/sptr.cpp b/src/sptr.cpp
index 8ea7f8f..f363e2e 100644
--- a/src/sptr.cpp
+++ b/src/sptr.cpp
@@ -1 +1,8 @@
1/*
2 * Copyright (C) 2007 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/sptr.h" 8#include "bu/sptr.h"
diff --git a/src/stack.cpp b/src/stack.cpp
index 7380615..c636e5b 100644
--- a/src/stack.cpp
+++ b/src/stack.cpp
@@ -1 +1,8 @@
1/*
2 * Copyright (C) 2007 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 "stack.h" 8#include "stack.h"
diff --git a/src/stream.cpp b/src/stream.cpp
index 267a7d1..8d976e5 100644
--- a/src/stream.cpp
+++ b/src/stream.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "stream.h" 8#include "stream.h"
2 9
3Bu::Stream::Stream() 10Bu::Stream::Stream()
diff --git a/src/tafnode.cpp b/src/tafnode.cpp
index ec51535..514ae26 100644
--- a/src/tafnode.cpp
+++ b/src/tafnode.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "tafnode.h" 8#include "tafnode.h"
2 9
3Bu::TafNode::TafNode( NodeType eType ) : 10Bu::TafNode::TafNode( NodeType eType ) :
diff --git a/src/tafreader.cpp b/src/tafreader.cpp
index efcb3d9..aaac8d7 100644
--- a/src/tafreader.cpp
+++ b/src/tafreader.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/tafreader.h" 8#include "bu/tafreader.h"
2#include "bu/exceptions.h" 9#include "bu/exceptions.h"
3#include "bu/fstring.h" 10#include "bu/fstring.h"
diff --git a/src/tafwriter.cpp b/src/tafwriter.cpp
index c2fbc50..3a33b11 100644
--- a/src/tafwriter.cpp
+++ b/src/tafwriter.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "tafwriter.h" 8#include "tafwriter.h"
2 9
3Bu::TafWriter::TafWriter( Bu::Stream &sOut ) : 10Bu::TafWriter::TafWriter( Bu::Stream &sOut ) :
diff --git a/src/tests/archive.cpp b/src/tests/archive.cpp
index 2035aa6..b2778f1 100644
--- a/src/tests/archive.cpp
+++ b/src/tests/archive.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "archive.h" 8#include "archive.h"
2#include "file.h" 9#include "file.h"
3 10
diff --git a/src/tests/atom.cpp b/src/tests/atom.cpp
index 2077bfd..cd5c373 100644
--- a/src/tests/atom.cpp
+++ b/src/tests/atom.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/atom.h" 8#include "bu/atom.h"
2#include <stdio.h> 9#include <stdio.h>
3#include <stdlib.h> 10#include <stdlib.h>
diff --git a/src/tests/bzip2.cpp b/src/tests/bzip2.cpp
index 683d3d7..cd87c3e 100644
--- a/src/tests/bzip2.cpp
+++ b/src/tests/bzip2.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/bzip2.h" 8#include "bu/bzip2.h"
2#include "bu/file.h" 9#include "bu/file.h"
3 10
diff --git a/src/tests/formula.cpp b/src/tests/formula.cpp
index 5237b87..fd043c7 100644
--- a/src/tests/formula.cpp
+++ b/src/tests/formula.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/formula.h" 8#include "bu/formula.h"
2 9
3int main( int argc, char *argv[] ) 10int main( int argc, char *argv[] )
diff --git a/src/tests/fstratsptr.cpp b/src/tests/fstratsptr.cpp
index 61c20bd..04e52d4 100644
--- a/src/tests/fstratsptr.cpp
+++ b/src/tests/fstratsptr.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/atom.h" 9#include "bu/atom.h"
3#include "bu/sptr.h" 10#include "bu/sptr.h"
diff --git a/src/tests/fstrformat.cpp b/src/tests/fstrformat.cpp
index dbf6133..8a3588a 100644
--- a/src/tests/fstrformat.cpp
+++ b/src/tests/fstrformat.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <stdio.h> 9#include <stdio.h>
3 10
diff --git a/src/tests/fstring.cpp b/src/tests/fstring.cpp
index d20309a..ca62a74 100644
--- a/src/tests/fstring.cpp
+++ b/src/tests/fstring.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/hash.h" 8#include "bu/hash.h"
2#include "bu/fstring.h" 9#include "bu/fstring.h"
3#include <sys/time.h> 10#include <sys/time.h>
diff --git a/src/tests/fstrstd.cpp b/src/tests/fstrstd.cpp
index 8dffcb6..799b240 100644
--- a/src/tests/fstrstd.cpp
+++ b/src/tests/fstrstd.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <iostream> 8#include <iostream>
2#include "bu/fstring.h" 9#include "bu/fstring.h"
3 10
diff --git a/src/tests/hash.cpp b/src/tests/hash.cpp
index 73cfb27..0168143 100644
--- a/src/tests/hash.cpp
+++ b/src/tests/hash.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/hash.h" 8#include "bu/hash.h"
2#include "bu/sptr.h" 9#include "bu/sptr.h"
3 10
diff --git a/src/tests/itoqueue1.cpp b/src/tests/itoqueue1.cpp
index f73f4d3..5dbfd16 100644
--- a/src/tests/itoqueue1.cpp
+++ b/src/tests/itoqueue1.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <string> 8#include <string>
2#include "bu/ito.h" 9#include "bu/ito.h"
3#include "bu/itoqueue.h" 10#include "bu/itoqueue.h"
diff --git a/src/tests/itoqueue2.cpp b/src/tests/itoqueue2.cpp
index f4b5e19..6cdd493 100644
--- a/src/tests/itoqueue2.cpp
+++ b/src/tests/itoqueue2.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <string> 8#include <string>
2#include "bu/ito.h" 9#include "bu/ito.h"
3#include "bu/itoqueue.h" 10#include "bu/itoqueue.h"
diff --git a/src/tests/itoserver.cpp b/src/tests/itoserver.cpp
index 4f5c644..f6a7052 100644
--- a/src/tests/itoserver.cpp
+++ b/src/tests/itoserver.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/itoserver.h" 8#include "bu/itoserver.h"
2#include "bu/protocol.h" 9#include "bu/protocol.h"
3#include "bu/client.h" 10#include "bu/client.h"
diff --git a/src/tests/list.cpp b/src/tests/list.cpp
index edbe288..c45921e 100644
--- a/src/tests/list.cpp
+++ b/src/tests/list.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 <list> 9#include <list>
3 10
diff --git a/src/tests/logger.cpp b/src/tests/logger.cpp
index 59be9d4..c9a1216 100644
--- a/src/tests/logger.cpp
+++ b/src/tests/logger.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/logger.h" 8#include "bu/logger.h"
2#include <errno.h> 9#include <errno.h>
3#include <stdlib.h> 10#include <stdlib.h>
diff --git a/src/tests/ringbuffer.cpp b/src/tests/ringbuffer.cpp
index 259ec1f..4636aab 100644
--- a/src/tests/ringbuffer.cpp
+++ b/src/tests/ringbuffer.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/ringbuffer.h" 8#include "bu/ringbuffer.h"
2#include <stdlib.h> 9#include <stdlib.h>
3 10
diff --git a/src/tests/size.cpp b/src/tests/size.cpp
index be13b69..1876d7b 100644
--- a/src/tests/size.cpp
+++ b/src/tests/size.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/hash.h" 8#include "bu/hash.h"
2#include "bu/fstring.h" 9#include "bu/fstring.h"
3 10
diff --git a/src/tests/socketblock.cpp b/src/tests/socketblock.cpp
index 443b07e..9f1d30e 100644
--- a/src/tests/socketblock.cpp
+++ b/src/tests/socketblock.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/ito.h" 8#include "bu/ito.h"
2#include "bu/socket.h" 9#include "bu/socket.h"
3#include "bu/serversocket.h" 10#include "bu/serversocket.h"
diff --git a/src/tests/taf.cpp b/src/tests/taf.cpp
index d832c9b..43fd48e 100644
--- a/src/tests/taf.cpp
+++ b/src/tests/taf.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/tafreader.h" 8#include "bu/tafreader.h"
2#include "bu/tafwriter.h" 9#include "bu/tafwriter.h"
3#include "bu/file.h" 10#include "bu/file.h"
diff --git a/src/tests/telnetsrv.cpp b/src/tests/telnetsrv.cpp
index 39e3217..186d6ae 100644
--- a/src/tests/telnetsrv.cpp
+++ b/src/tests/telnetsrv.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/server.h" 8#include "bu/server.h"
2#include "bu/protocoltelnet.h" 9#include "bu/protocoltelnet.h"
3#include "bu/client.h" 10#include "bu/client.h"
diff --git a/src/unit/file.cpp b/src/unit/file.cpp
index 1eaaf36..5042350 100644
--- a/src/unit/file.cpp
+++ b/src/unit/file.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "unitsuite.h" 8#include "unitsuite.h"
2#include "file.h" 9#include "file.h"
3#include "exceptions.h" 10#include "exceptions.h"
diff --git a/src/unit/fstring.cpp b/src/unit/fstring.cpp
index 2044a86..69c7e0a 100644
--- a/src/unit/fstring.cpp
+++ b/src/unit/fstring.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "fstring.h" 8#include "fstring.h"
2#include "unitsuite.h" 9#include "unitsuite.h"
3 10
diff --git a/src/unit/hash.cpp b/src/unit/hash.cpp
index 9ea933f..2fdf0f6 100644
--- a/src/unit/hash.cpp
+++ b/src/unit/hash.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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#include "bu/unitsuite.h" 10#include "bu/unitsuite.h"
diff --git a/src/unit/membuf.cpp b/src/unit/membuf.cpp
index 65ba82a..2fcd95d 100644
--- a/src/unit/membuf.cpp
+++ b/src/unit/membuf.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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/unitsuite.h" 8#include "bu/unitsuite.h"
2#include "bu/membuf.h" 9#include "bu/membuf.h"
3 10
diff --git a/src/unit/taf.cpp b/src/unit/taf.cpp
index 94b4613..f363c78 100644
--- a/src/unit/taf.cpp
+++ b/src/unit/taf.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "unitsuite.h" 8#include "unitsuite.h"
2#include "file.h" 9#include "file.h"
3#include "tafreader.h" 10#include "tafreader.h"
diff --git a/src/unitsuite.cpp b/src/unitsuite.cpp
index b61f486..b479913 100644
--- a/src/unitsuite.cpp
+++ b/src/unitsuite.cpp
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007 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 "unitsuite.h" 8#include "unitsuite.h"
2 9
3Bu::UnitSuite::UnitSuite() : 10Bu::UnitSuite::UnitSuite() :