summaryrefslogtreecommitdiff
path: root/cpp/src/IceUtil
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceUtil')
-rw-r--r--cpp/src/IceUtil/Base64.cpp10
-rw-r--r--cpp/src/IceUtil/Cond.cpp10
-rw-r--r--cpp/src/IceUtil/CountDownLatch.cpp10
-rw-r--r--cpp/src/IceUtil/CtrlCHandler.cpp10
-rw-r--r--cpp/src/IceUtil/Exception.cpp10
-rw-r--r--cpp/src/IceUtil/GC.cpp10
-rw-r--r--cpp/src/IceUtil/GCRecMutex.cpp10
-rw-r--r--cpp/src/IceUtil/GCShared.cpp10
-rw-r--r--cpp/src/IceUtil/InputUtil.cpp10
-rw-r--r--cpp/src/IceUtil/Makefile13
-rw-r--r--cpp/src/IceUtil/OutputUtil.cpp10
-rw-r--r--cpp/src/IceUtil/RWRecMutex.cpp10
-rw-r--r--cpp/src/IceUtil/RecMutex.cpp10
-rw-r--r--cpp/src/IceUtil/StaticMutex.cpp10
-rw-r--r--cpp/src/IceUtil/StringUtil.cpp10
-rw-r--r--cpp/src/IceUtil/Thread.cpp10
-rw-r--r--cpp/src/IceUtil/ThreadException.cpp10
-rw-r--r--cpp/src/IceUtil/Time.cpp10
-rw-r--r--cpp/src/IceUtil/UUID.cpp10
-rw-r--r--cpp/src/IceUtil/Unicode.cpp10
20 files changed, 102 insertions, 101 deletions
diff --git a/cpp/src/IceUtil/Base64.cpp b/cpp/src/IceUtil/Base64.cpp
index 3989e23533a..a432110278e 100644
--- a/cpp/src/IceUtil/Base64.cpp
+++ b/cpp/src/IceUtil/Base64.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/Base64.h>
#include <iostream>
diff --git a/cpp/src/IceUtil/Cond.cpp b/cpp/src/IceUtil/Cond.cpp
index a6b6a84da25..312b3514aff 100644
--- a/cpp/src/IceUtil/Cond.cpp
+++ b/cpp/src/IceUtil/Cond.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/Cond.h>
#ifndef _WIN32
diff --git a/cpp/src/IceUtil/CountDownLatch.cpp b/cpp/src/IceUtil/CountDownLatch.cpp
index 41a9d60abe6..178b3ca2b4e 100644
--- a/cpp/src/IceUtil/CountDownLatch.cpp
+++ b/cpp/src/IceUtil/CountDownLatch.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2004
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/CountDownLatch.h>
#include <IceUtil/ThreadException.h>
diff --git a/cpp/src/IceUtil/CtrlCHandler.cpp b/cpp/src/IceUtil/CtrlCHandler.cpp
index 887483df5dc..0b11af63987 100644
--- a/cpp/src/IceUtil/CtrlCHandler.cpp
+++ b/cpp/src/IceUtil/CtrlCHandler.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/CtrlCHandler.h>
#include <IceUtil/StaticMutex.h>
diff --git a/cpp/src/IceUtil/Exception.cpp b/cpp/src/IceUtil/Exception.cpp
index 795b9217b12..e93b578949a 100644
--- a/cpp/src/IceUtil/Exception.cpp
+++ b/cpp/src/IceUtil/Exception.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/Exception.h>
using namespace std;
diff --git a/cpp/src/IceUtil/GC.cpp b/cpp/src/IceUtil/GC.cpp
index e9fe8052c92..8e1e9e33f3a 100644
--- a/cpp/src/IceUtil/GC.cpp
+++ b/cpp/src/IceUtil/GC.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/GC.h>
#include <IceUtil/Time.h>
#include <IceUtil/GCRecMutex.h>
diff --git a/cpp/src/IceUtil/GCRecMutex.cpp b/cpp/src/IceUtil/GCRecMutex.cpp
index d474573b3d8..1b2eb54449a 100644
--- a/cpp/src/IceUtil/GCRecMutex.cpp
+++ b/cpp/src/IceUtil/GCRecMutex.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/GCRecMutex.h>
namespace IceUtil
diff --git a/cpp/src/IceUtil/GCShared.cpp b/cpp/src/IceUtil/GCShared.cpp
index 53fb9ce128f..783d52448fc 100644
--- a/cpp/src/IceUtil/GCShared.cpp
+++ b/cpp/src/IceUtil/GCShared.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/GCShared.h>
namespace IceUtil
diff --git a/cpp/src/IceUtil/InputUtil.cpp b/cpp/src/IceUtil/InputUtil.cpp
index 128b5d93507..9d71e3b2ced 100644
--- a/cpp/src/IceUtil/InputUtil.cpp
+++ b/cpp/src/IceUtil/InputUtil.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/InputUtil.h>
#include <stdlib.h>
#include <errno.h>
diff --git a/cpp/src/IceUtil/Makefile b/cpp/src/IceUtil/Makefile
index 6059d14187e..20e3bca3734 100644
--- a/cpp/src/IceUtil/Makefile
+++ b/cpp/src/IceUtil/Makefile
@@ -1,16 +1,17 @@
-# ********************************************************************** #
-# Copyright (c) 2003
+# **********************************************************************
+#
+# Copyright (c) 2003 - 2004
# ZeroC, Inc.
-# Billerica, MA, USA
+# North Palm Beach, FL, USA
#
# All Rights Reserved.
#
-# Ice is free software; you can redistribute it and/or modify it under
-# the terms of the GNU General Public License version 2 as published by
-# the Free Software Foundation.
+# This copy of Ice is licensed to you under the terms described in the
+# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
+
top_srcdir = ../..
LIBFILENAME = $(call mklibfilename,IceUtil,$(VERSION))
diff --git a/cpp/src/IceUtil/OutputUtil.cpp b/cpp/src/IceUtil/OutputUtil.cpp
index 00fc1897f33..870040959aa 100644
--- a/cpp/src/IceUtil/OutputUtil.cpp
+++ b/cpp/src/IceUtil/OutputUtil.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/OutputUtil.h>
using namespace std;
diff --git a/cpp/src/IceUtil/RWRecMutex.cpp b/cpp/src/IceUtil/RWRecMutex.cpp
index ee04c2f4ed6..6bf075df086 100644
--- a/cpp/src/IceUtil/RWRecMutex.cpp
+++ b/cpp/src/IceUtil/RWRecMutex.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/RWRecMutex.h>
#include <IceUtil/Exception.h>
#include <IceUtil/Time.h>
diff --git a/cpp/src/IceUtil/RecMutex.cpp b/cpp/src/IceUtil/RecMutex.cpp
index 2221a227480..1054779998d 100644
--- a/cpp/src/IceUtil/RecMutex.cpp
+++ b/cpp/src/IceUtil/RecMutex.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/RecMutex.h>
#include <IceUtil/Exception.h>
diff --git a/cpp/src/IceUtil/StaticMutex.cpp b/cpp/src/IceUtil/StaticMutex.cpp
index 8fef1f9e3b5..00af53e7498 100644
--- a/cpp/src/IceUtil/StaticMutex.cpp
+++ b/cpp/src/IceUtil/StaticMutex.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/StaticMutex.h>
#include <IceUtil/ThreadException.h>
diff --git a/cpp/src/IceUtil/StringUtil.cpp b/cpp/src/IceUtil/StringUtil.cpp
index 389da0c6f6c..220baf69595 100644
--- a/cpp/src/IceUtil/StringUtil.cpp
+++ b/cpp/src/IceUtil/StringUtil.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/StringUtil.h>
using namespace std;
diff --git a/cpp/src/IceUtil/Thread.cpp b/cpp/src/IceUtil/Thread.cpp
index c9704378849..3bfd809c856 100644
--- a/cpp/src/IceUtil/Thread.cpp
+++ b/cpp/src/IceUtil/Thread.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/Thread.h>
#include <IceUtil/Time.h>
#include <IceUtil/ThreadException.h>
diff --git a/cpp/src/IceUtil/ThreadException.cpp b/cpp/src/IceUtil/ThreadException.cpp
index 0cafa6612bd..acc74c7fe71 100644
--- a/cpp/src/IceUtil/ThreadException.cpp
+++ b/cpp/src/IceUtil/ThreadException.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/ThreadException.h>
using namespace std;
diff --git a/cpp/src/IceUtil/Time.cpp b/cpp/src/IceUtil/Time.cpp
index a056d93bf12..7d365f820e1 100644
--- a/cpp/src/IceUtil/Time.cpp
+++ b/cpp/src/IceUtil/Time.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/Time.h>
#ifdef _WIN32
diff --git a/cpp/src/IceUtil/UUID.cpp b/cpp/src/IceUtil/UUID.cpp
index acdd3af223f..82a341f82d6 100644
--- a/cpp/src/IceUtil/UUID.cpp
+++ b/cpp/src/IceUtil/UUID.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/UUID.h>
// On Windows, we use Windows's RPC UUID generator.
diff --git a/cpp/src/IceUtil/Unicode.cpp b/cpp/src/IceUtil/Unicode.cpp
index 2f553cd099a..31cf54cc56d 100644
--- a/cpp/src/IceUtil/Unicode.cpp
+++ b/cpp/src/IceUtil/Unicode.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/Unicode.h>
#include <algorithm>