diff --git a/gsmartcontrol/Makefile.am b/gsmartcontrol/Makefile.am index 6c6f57e..bc7c01e 100644 --- a/gsmartcontrol/Makefile.am +++ b/gsmartcontrol/Makefile.am @@ -36,9 +36,8 @@ nobase_dist_doc_DATA = contrib/cron-based_noadmin/README \ # Extra files bundled with distribution. # file2csource.sh is needed for building but not installed. -EXTRA_DIST = COPYING TODO INSTALL configure autogen.sh \ - baqup gsmartcontrol.kdevelop \ - templates \ +EXTRA_DIST = COPYING INSTALL configure autogen.sh \ + gsmartcontrol.kdev4 \ file2csource.sh \ gsmartcontrol.spec diff --git a/gsmartcontrol/configure-dev b/gsmartcontrol/configure-dev new file mode 100755 index 0000000..a9895a5 --- /dev/null +++ b/gsmartcontrol/configure-dev @@ -0,0 +1,70 @@ +#!/bin/bash + +# Configure a build directory according to developer flags + +type="$1"; +configure_script="$2"; + +if [ "$type" == "" ]; then + echo "Usage: $0 []" + echo "where is one of:" + echo "debug optimized icc win32 win32-debug win64-debug sun portland open64"; + echo " is ../configure by default" + exit 1; +fi + +if [ "$configure_script" == "" ]; then + configure_script="../configure"; +fi + + +flags=""; + +case $type in + optimized) + flags="--disable-user-flags --enable-optimize-options --enable-tests" ;; + debug) + flags="--enable-debug-options --enable-tests" ;; + icc) + flags="CC=icc64 CXX=icpc64 --disable-user-flags --enable-tests" ;; + win32) + flags="CC=i386-pc-mingw32-gcc CXX=i386-pc-mingw32-g++ \ + PKG_CONFIG_PATH=/cross/w32/target/lib/pkgconfig PKG_CONFIG_LIBDIR=\"\" \ + PATH=\"/cross/w32/gcc-bin:/cross/w32/target/bin:$PATH\" \ + --with-windows-gtk-name=gtk2-runtime-2.16.6-2010-02-24-ash --disable-user-flags \ + --enable-optimize-options --enable-tests --build=i686-linux --host=i386-pc-mingw32" ;; + win32-debug) + flags="CC=i386-pc-mingw32-gcc CXX=i386-pc-mingw32-g++ \ + PKG_CONFIG_PATH=/cross/w32/target/lib/pkgconfig PKG_CONFIG_LIBDIR=\"\" \ + PATH=\"/cross/w32/gcc-bin:/cross/w32/target/bin:$PATH\" \ + --disable-user-flags --enable-debug-options --enable-tests --build=i686-linux --host=i386-pc-mingw32" ;; + win64-debug) + flags="CC=x86_64-pc-mingw32-gcc CXX=x86_64-pc-mingw32-g++ + PKG_CONFIG_PATH=/cross/w64/target/lib/pkgconfig \ + PKG_CONFIG_LIBDIR=\"\" PATH=\"/cross/w64/gcc-bin:/cross/w64/target/bin:$PATH\" \ + --disable-user-flags --enable-optimize-options --enable-tests --build=i686-linux \ + --host=x86_64-pc-mingw32" ;; + sun) + flags="CC=suncc CXX=sunCC CFLAGS=\"-errwarn=%all -I/opt/sun/target64/include\" \ + CXXFLAGS=\"-I/opt/sun/target64/include\" PATH=\"/opt/sun/sunstudio/bin:$PATH\" \ + LDFLAGS=\"-R/opt/sun/target64/lib64 -L/opt/sun/target64/lib64\" \ + PKG_CONFIG_PATH=\"/opt/sun/target64/lib64/pkgconfig:/usr/lib64/pkgconfig\" \ + PKG_CONFIG_LIBDIR=\"\" --enable-tests" ;; + portland) + flags="CC=pgcc CXX=pgCC LDFLAGS=\"-s\" CFLAGS=\"-Minform=warn -Bstatic_pgi\" \ + CXXFLAGS=\"-Minform=warn -Bstatic_pgi -noswitcherror -define_macro=HZ_NO_COMPILER_AUTOINCLUDE\" \ + --enable-tests" ;; + + open64) + flags="CC=/opt/open64/bin/opencc CXX=/opt/open64/bin/openCC CXXFLAGS=\"-Wall\" \ + --enable-tests" ;; +esac + + +echo "Running:" +echo $configure_script $flags; + +$configure_script $flags + + +exit $? diff --git a/gsmartcontrol/src/applib/app_gtkmm_features.h b/gsmartcontrol/src/applib/app_gtkmm_features.h index 7163a54..e95c475 100644 --- a/gsmartcontrol/src/applib/app_gtkmm_features.h +++ b/gsmartcontrol/src/applib/app_gtkmm_features.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/app_gtkmm_utils.cpp b/gsmartcontrol/src/applib/app_gtkmm_utils.cpp index 1a10c03..1d74cf1 100644 --- a/gsmartcontrol/src/applib/app_gtkmm_utils.cpp +++ b/gsmartcontrol/src/applib/app_gtkmm_utils.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/app_gtkmm_utils.h b/gsmartcontrol/src/applib/app_gtkmm_utils.h index 1e7d86f..894493b 100644 --- a/gsmartcontrol/src/applib/app_gtkmm_utils.h +++ b/gsmartcontrol/src/applib/app_gtkmm_utils.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/app_pango_utils.cpp b/gsmartcontrol/src/applib/app_pango_utils.cpp index 2cb5693..e9540f7 100644 --- a/gsmartcontrol/src/applib/app_pango_utils.cpp +++ b/gsmartcontrol/src/applib/app_pango_utils.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/app_pango_utils.h b/gsmartcontrol/src/applib/app_pango_utils.h index 4780ec9..62946fd 100644 --- a/gsmartcontrol/src/applib/app_pango_utils.h +++ b/gsmartcontrol/src/applib/app_pango_utils.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/app_pcrecpp.h b/gsmartcontrol/src/applib/app_pcrecpp.h index 355b560..18ee7a6 100644 --- a/gsmartcontrol/src/applib/app_pcrecpp.h +++ b/gsmartcontrol/src/applib/app_pcrecpp.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/app_ui_res_utils.h b/gsmartcontrol/src/applib/app_ui_res_utils.h index 36d0b67..55c806d 100644 --- a/gsmartcontrol/src/applib/app_ui_res_utils.h +++ b/gsmartcontrol/src/applib/app_ui_res_utils.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/app_ui_res_utils_test.cpp b/gsmartcontrol/src/applib/app_ui_res_utils_test.cpp index 1234bf9..3b4faf5 100644 --- a/gsmartcontrol/src/applib/app_ui_res_utils_test.cpp +++ b/gsmartcontrol/src/applib/app_ui_res_utils_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/app_ui_res_utils_test_data.cpp b/gsmartcontrol/src/applib/app_ui_res_utils_test_data.cpp index 3579b58..85a09ba 100644 --- a/gsmartcontrol/src/applib/app_ui_res_utils_test_data.cpp +++ b/gsmartcontrol/src/applib/app_ui_res_utils_test_data.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/cmdex.cpp b/gsmartcontrol/src/applib/cmdex.cpp index 9bcf613..a6b1635 100644 --- a/gsmartcontrol/src/applib/cmdex.cpp +++ b/gsmartcontrol/src/applib/cmdex.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/cmdex.h b/gsmartcontrol/src/applib/cmdex.h index 94d2619..7931278 100644 --- a/gsmartcontrol/src/applib/cmdex.h +++ b/gsmartcontrol/src/applib/cmdex.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/cmdex_sync.cpp b/gsmartcontrol/src/applib/cmdex_sync.cpp index 7f6b0a3..2308e8d 100644 --- a/gsmartcontrol/src/applib/cmdex_sync.cpp +++ b/gsmartcontrol/src/applib/cmdex_sync.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/cmdex_sync.h b/gsmartcontrol/src/applib/cmdex_sync.h index c3ac880..a6fd425 100644 --- a/gsmartcontrol/src/applib/cmdex_sync.h +++ b/gsmartcontrol/src/applib/cmdex_sync.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/cmdex_sync_gui.cpp b/gsmartcontrol/src/applib/cmdex_sync_gui.cpp index 2989eb5..4d5414d 100644 --- a/gsmartcontrol/src/applib/cmdex_sync_gui.cpp +++ b/gsmartcontrol/src/applib/cmdex_sync_gui.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/cmdex_sync_gui.h b/gsmartcontrol/src/applib/cmdex_sync_gui.h index 02045d2..a729987 100644 --- a/gsmartcontrol/src/applib/cmdex_sync_gui.h +++ b/gsmartcontrol/src/applib/cmdex_sync_gui.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/gui_utils.cpp b/gsmartcontrol/src/applib/gui_utils.cpp index a024a5b..40d399b 100644 --- a/gsmartcontrol/src/applib/gui_utils.cpp +++ b/gsmartcontrol/src/applib/gui_utils.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/gui_utils.h b/gsmartcontrol/src/applib/gui_utils.h index 7ffb8cf..c092554 100644 --- a/gsmartcontrol/src/applib/gui_utils.h +++ b/gsmartcontrol/src/applib/gui_utils.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/selftest.cpp b/gsmartcontrol/src/applib/selftest.cpp index cc08edc..5f3274c 100644 --- a/gsmartcontrol/src/applib/selftest.cpp +++ b/gsmartcontrol/src/applib/selftest.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/selftest.h b/gsmartcontrol/src/applib/selftest.h index a4fe57a..9a8ae2e 100644 --- a/gsmartcontrol/src/applib/selftest.h +++ b/gsmartcontrol/src/applib/selftest.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/smartctl_executor.cpp b/gsmartcontrol/src/applib/smartctl_executor.cpp index 7b2c3cd..ac93264 100644 --- a/gsmartcontrol/src/applib/smartctl_executor.cpp +++ b/gsmartcontrol/src/applib/smartctl_executor.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/smartctl_executor.h b/gsmartcontrol/src/applib/smartctl_executor.h index 8b994f9..8f0a3fe 100644 --- a/gsmartcontrol/src/applib/smartctl_executor.h +++ b/gsmartcontrol/src/applib/smartctl_executor.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/smartctl_executor_gui.h b/gsmartcontrol/src/applib/smartctl_executor_gui.h index 42e1139..316ff92 100644 --- a/gsmartcontrol/src/applib/smartctl_executor_gui.h +++ b/gsmartcontrol/src/applib/smartctl_executor_gui.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/smartctl_executor_test.cpp b/gsmartcontrol/src/applib/smartctl_executor_test.cpp index 0d754cf..574df6e 100644 --- a/gsmartcontrol/src/applib/smartctl_executor_test.cpp +++ b/gsmartcontrol/src/applib/smartctl_executor_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/smartctl_parser.cpp b/gsmartcontrol/src/applib/smartctl_parser.cpp index 9b7fbb5..c186007 100644 --- a/gsmartcontrol/src/applib/smartctl_parser.cpp +++ b/gsmartcontrol/src/applib/smartctl_parser.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/smartctl_parser.h b/gsmartcontrol/src/applib/smartctl_parser.h index 30dff7a..7257dea 100644 --- a/gsmartcontrol/src/applib/smartctl_parser.h +++ b/gsmartcontrol/src/applib/smartctl_parser.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/smartctl_parser_test.cpp b/gsmartcontrol/src/applib/smartctl_parser_test.cpp index 84c9c19..4e089fc 100644 --- a/gsmartcontrol/src/applib/smartctl_parser_test.cpp +++ b/gsmartcontrol/src/applib/smartctl_parser_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/spawn_test.cpp b/gsmartcontrol/src/applib/spawn_test.cpp index 8f105f9..8a5ad39 100644 --- a/gsmartcontrol/src/applib/spawn_test.cpp +++ b/gsmartcontrol/src/applib/spawn_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_detector.cpp b/gsmartcontrol/src/applib/storage_detector.cpp index 720ac0f..0691c92 100644 --- a/gsmartcontrol/src/applib/storage_detector.cpp +++ b/gsmartcontrol/src/applib/storage_detector.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_detector.h b/gsmartcontrol/src/applib/storage_detector.h index cac3222..971ef37 100644 --- a/gsmartcontrol/src/applib/storage_detector.h +++ b/gsmartcontrol/src/applib/storage_detector.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_detector_test.cpp b/gsmartcontrol/src/applib/storage_detector_test.cpp index 0f539cf..e3d7f2f 100644 --- a/gsmartcontrol/src/applib/storage_detector_test.cpp +++ b/gsmartcontrol/src/applib/storage_detector_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_device.cpp b/gsmartcontrol/src/applib/storage_device.cpp index 8d3151f..2613a25 100644 --- a/gsmartcontrol/src/applib/storage_device.cpp +++ b/gsmartcontrol/src/applib/storage_device.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_device.h b/gsmartcontrol/src/applib/storage_device.h index df184a8..f23be75 100644 --- a/gsmartcontrol/src/applib/storage_device.h +++ b/gsmartcontrol/src/applib/storage_device.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_property.cpp b/gsmartcontrol/src/applib/storage_property.cpp index d0b2f64..3ae7639 100644 --- a/gsmartcontrol/src/applib/storage_property.cpp +++ b/gsmartcontrol/src/applib/storage_property.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_property.h b/gsmartcontrol/src/applib/storage_property.h index ad1cd08..56476ef 100644 --- a/gsmartcontrol/src/applib/storage_property.h +++ b/gsmartcontrol/src/applib/storage_property.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_property_colors.h b/gsmartcontrol/src/applib/storage_property_colors.h index f9e334c..830ba56 100644 --- a/gsmartcontrol/src/applib/storage_property_colors.h +++ b/gsmartcontrol/src/applib/storage_property_colors.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_property_descr.cpp b/gsmartcontrol/src/applib/storage_property_descr.cpp index 629e0b4..520904c 100644 --- a/gsmartcontrol/src/applib/storage_property_descr.cpp +++ b/gsmartcontrol/src/applib/storage_property_descr.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_property_descr.h b/gsmartcontrol/src/applib/storage_property_descr.h index 1ec7fac..a0ac5ab 100644 --- a/gsmartcontrol/src/applib/storage_property_descr.h +++ b/gsmartcontrol/src/applib/storage_property_descr.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/storage_settings.h b/gsmartcontrol/src/applib/storage_settings.h index 58f5a93..4a6c2cb 100644 --- a/gsmartcontrol/src/applib/storage_settings.h +++ b/gsmartcontrol/src/applib/storage_settings.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/applib/wrapping_label.h b/gsmartcontrol/src/applib/wrapping_label.h index 1a6a9f0..297fc25 100644 --- a/gsmartcontrol/src/applib/wrapping_label.h +++ b/gsmartcontrol/src/applib/wrapping_label.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/global_macros.h b/gsmartcontrol/src/global_macros.h index f3c68cb..32a092a 100644 --- a/gsmartcontrol/src/global_macros.h +++ b/gsmartcontrol/src/global_macros.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_about_dialog.cpp b/gsmartcontrol/src/gsc_about_dialog.cpp index 2b3a633..080c60d 100644 --- a/gsmartcontrol/src/gsc_about_dialog.cpp +++ b/gsmartcontrol/src/gsc_about_dialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ @@ -47,7 +47,7 @@ GscAboutDialog::GscAboutDialog(BaseObjectType* gtkcobj, const app_ui_res_ref_t& set_license(LicenseTextResData().get_string()); // spammers go away - set_copyright("Copyright (C) 2008 - 2010 Alexander Shaduri " ""); + set_copyright("Copyright (C) 2008 - 2011 Alexander Shaduri " ""); std::string authors_str = AuthorsTextResData().get_string(); diff --git a/gsmartcontrol/src/gsc_about_dialog.h b/gsmartcontrol/src/gsc_about_dialog.h index 0db2d4d..0f538da 100644 --- a/gsmartcontrol/src/gsc_about_dialog.h +++ b/gsmartcontrol/src/gsc_about_dialog.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_executor_error_dialog.cpp b/gsmartcontrol/src/gsc_executor_error_dialog.cpp index 40dd950..e7854f7 100644 --- a/gsmartcontrol/src/gsc_executor_error_dialog.cpp +++ b/gsmartcontrol/src/gsc_executor_error_dialog.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_executor_error_dialog.h b/gsmartcontrol/src/gsc_executor_error_dialog.h index 5d7d369..5721672 100644 --- a/gsmartcontrol/src/gsc_executor_error_dialog.h +++ b/gsmartcontrol/src/gsc_executor_error_dialog.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_executor_log_window.cpp b/gsmartcontrol/src/gsc_executor_log_window.cpp index d73cb7f..d6f3554 100644 --- a/gsmartcontrol/src/gsc_executor_log_window.cpp +++ b/gsmartcontrol/src/gsc_executor_log_window.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_executor_log_window.h b/gsmartcontrol/src/gsc_executor_log_window.h index 2afd0cc..08ca958 100644 --- a/gsmartcontrol/src/gsc_executor_log_window.h +++ b/gsmartcontrol/src/gsc_executor_log_window.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_help_window.cpp b/gsmartcontrol/src/gsc_help_window.cpp index b465945..c9eb8b8 100644 --- a/gsmartcontrol/src/gsc_help_window.cpp +++ b/gsmartcontrol/src/gsc_help_window.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_help_window.h b/gsmartcontrol/src/gsc_help_window.h index 953a34f..2099344 100644 --- a/gsmartcontrol/src/gsc_help_window.h +++ b/gsmartcontrol/src/gsc_help_window.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_info_window.cpp b/gsmartcontrol/src/gsc_info_window.cpp index e7aaf27..4ac0f3a 100644 --- a/gsmartcontrol/src/gsc_info_window.cpp +++ b/gsmartcontrol/src/gsc_info_window.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_info_window.h b/gsmartcontrol/src/gsc_info_window.h index c97fbcc..e9f7171 100644 --- a/gsmartcontrol/src/gsc_info_window.h +++ b/gsmartcontrol/src/gsc_info_window.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_init.cpp b/gsmartcontrol/src/gsc_init.cpp index e3c91e9..8a578f8 100644 --- a/gsmartcontrol/src/gsc_init.cpp +++ b/gsmartcontrol/src/gsc_init.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ @@ -245,7 +245,7 @@ inline void app_print_version_info() std::string warningtext = std::string("\nWarning: GSmartControl"); warningtext += " comes with ABSOLUTELY NO WARRANTY.\n"; warningtext += "See LICENSE_gsmartcontrol.txt file for details.\n"; - warningtext += "\nCopyright (C) 2008 - 2010 Alexander Shaduri \n\n"; + warningtext += "\nCopyright (C) 2008 - 2011 Alexander Shaduri \n\n"; std::fprintf(stdout, "%s%s", versiontext.c_str(), warningtext.c_str()); } diff --git a/gsmartcontrol/src/gsc_init.h b/gsmartcontrol/src/gsc_init.h index 088b402..73a6a8c 100644 --- a/gsmartcontrol/src/gsc_init.h +++ b/gsmartcontrol/src/gsc_init.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_main.cpp b/gsmartcontrol/src/gsc_main.cpp index b2c5fdc..9cd63f1 100644 --- a/gsmartcontrol/src/gsc_main.cpp +++ b/gsmartcontrol/src/gsc_main.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_main_window.cpp b/gsmartcontrol/src/gsc_main_window.cpp index bf4e116..715a4c1 100644 --- a/gsmartcontrol/src/gsc_main_window.cpp +++ b/gsmartcontrol/src/gsc_main_window.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_main_window.h b/gsmartcontrol/src/gsc_main_window.h index b1dc284..72ac21d 100644 --- a/gsmartcontrol/src/gsc_main_window.h +++ b/gsmartcontrol/src/gsc_main_window.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_main_window_iconview.h b/gsmartcontrol/src/gsc_main_window_iconview.h index 76eac8c..e69e116 100644 --- a/gsmartcontrol/src/gsc_main_window_iconview.h +++ b/gsmartcontrol/src/gsc_main_window_iconview.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_preferences_window.cpp b/gsmartcontrol/src/gsc_preferences_window.cpp index fd70089..a14e0d7 100644 --- a/gsmartcontrol/src/gsc_preferences_window.cpp +++ b/gsmartcontrol/src/gsc_preferences_window.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_preferences_window.h b/gsmartcontrol/src/gsc_preferences_window.h index c9aa740..3437451 100644 --- a/gsmartcontrol/src/gsc_preferences_window.h +++ b/gsmartcontrol/src/gsc_preferences_window.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_settings.h b/gsmartcontrol/src/gsc_settings.h index c7e8bcb..58d66f7 100644 --- a/gsmartcontrol/src/gsc_settings.h +++ b/gsmartcontrol/src/gsc_settings.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_text_window.h b/gsmartcontrol/src/gsc_text_window.h index c0b1104..d207681 100644 --- a/gsmartcontrol/src/gsc_text_window.h +++ b/gsmartcontrol/src/gsc_text_window.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_gsmartcontrol.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/gsc_winres.rc.in b/gsmartcontrol/src/gsc_winres.rc.in index dcb32f6..6c063a6 100644 --- a/gsmartcontrol/src/gsc_winres.rc.in +++ b/gsmartcontrol/src/gsc_winres.rc.in @@ -3,7 +3,7 @@ // #include "winuser.h" // needed for RT_MANIFEST // 1 RT_MANIFEST "gsmartcontrol.exe.manifest" -biocalcon ICON "gsmartcontrol.ico" +gsmartcontrol ICON "gsmartcontrol.ico" 1 VERSIONINFO FILEVERSION 0,0,0,0 diff --git a/gsmartcontrol/src/hz/any_convert.h b/gsmartcontrol/src/hz/any_convert.h index c58f277..e58bea5 100644 --- a/gsmartcontrol/src/hz/any_convert.h +++ b/gsmartcontrol/src/hz/any_convert.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/any_type.h b/gsmartcontrol/src/hz/any_type.h index 250b911..c502e9d 100644 --- a/gsmartcontrol/src/hz/any_type.h +++ b/gsmartcontrol/src/hz/any_type.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2000 - 2010 Kevlin Henney - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_boost_1_0.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/any_type_holder.h b/gsmartcontrol/src/hz/any_type_holder.h index 769c2e8..fe94048 100644 --- a/gsmartcontrol/src/hz/any_type_holder.h +++ b/gsmartcontrol/src/hz/any_type_holder.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2000 - 2010 Kevlin Henney - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_boost_1_0.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/any_type_test.cpp b/gsmartcontrol/src/hz/any_type_test.cpp index 316bb93..f8568ec 100644 --- a/gsmartcontrol/src/hz/any_type_test.cpp +++ b/gsmartcontrol/src/hz/any_type_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/ascii.h b/gsmartcontrol/src/hz/ascii.h index a8e3b6b..0fa494b 100644 --- a/gsmartcontrol/src/hz/ascii.h +++ b/gsmartcontrol/src/hz/ascii.h @@ -2,7 +2,7 @@ Copyright: (C) 1992, 1993 The Regents of the University of California License: See LICENSE_bsd-ucb.txt file - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/bad_cast_exception.h b/gsmartcontrol/src/hz/bad_cast_exception.h index 70c6a0b..96cde87 100644 --- a/gsmartcontrol/src/hz/bad_cast_exception.h +++ b/gsmartcontrol/src/hz/bad_cast_exception.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/bin2ascii_encoder.h b/gsmartcontrol/src/hz/bin2ascii_encoder.h index 1becd8a..afafd87 100644 --- a/gsmartcontrol/src/hz/bin2ascii_encoder.h +++ b/gsmartcontrol/src/hz/bin2ascii_encoder.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/bin2ascii_encoder_test.cpp b/gsmartcontrol/src/hz/bin2ascii_encoder_test.cpp index 0187c56..7de4261 100644 --- a/gsmartcontrol/src/hz/bin2ascii_encoder_test.cpp +++ b/gsmartcontrol/src/hz/bin2ascii_encoder_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/common_types.h b/gsmartcontrol/src/hz/common_types.h index abc6621..4ea6d8d 100644 --- a/gsmartcontrol/src/hz/common_types.h +++ b/gsmartcontrol/src/hz/common_types.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/cstdint.h b/gsmartcontrol/src/hz/cstdint.h index f5807d4..92e22c8 100644 --- a/gsmartcontrol/src/hz/cstdint.h +++ b/gsmartcontrol/src/hz/cstdint.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2009 - 2010 Alexander Shaduri + (C) 2009 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/data_file.h b/gsmartcontrol/src/hz/data_file.h index b339f33..79a7f9e 100644 --- a/gsmartcontrol/src/hz/data_file.h +++ b/gsmartcontrol/src/hz/data_file.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2004 - 2010 Alexander Shaduri + (C) 2004 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/debug.h b/gsmartcontrol/src/hz/debug.h index 7c3cf03..3bd3174 100644 --- a/gsmartcontrol/src/hz/debug.h +++ b/gsmartcontrol/src/hz/debug.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/down_cast.h b/gsmartcontrol/src/hz/down_cast.h index e95106d..aa64f2e 100644 --- a/gsmartcontrol/src/hz/down_cast.h +++ b/gsmartcontrol/src/hz/down_cast.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2003 - 2010 Alexander Shaduri + (C) 2003 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/down_cast_test.cpp b/gsmartcontrol/src/hz/down_cast_test.cpp index 1b0e263..3aa8a97 100644 --- a/gsmartcontrol/src/hz/down_cast_test.cpp +++ b/gsmartcontrol/src/hz/down_cast_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/env_tools.h b/gsmartcontrol/src/hz/env_tools.h index c2165b2..ff07f68 100644 --- a/gsmartcontrol/src/hz/env_tools.h +++ b/gsmartcontrol/src/hz/env_tools.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/errno_string.h b/gsmartcontrol/src/hz/errno_string.h index aeeb816..ddbfdfa 100644 --- a/gsmartcontrol/src/hz/errno_string.h +++ b/gsmartcontrol/src/hz/errno_string.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/errno_string_test.cpp b/gsmartcontrol/src/hz/errno_string_test.cpp index 1f1ccac..ea822b2 100644 --- a/gsmartcontrol/src/hz/errno_string_test.cpp +++ b/gsmartcontrol/src/hz/errno_string_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/error.h b/gsmartcontrol/src/hz/error.h index 4942680..50de8f4 100644 --- a/gsmartcontrol/src/hz/error.h +++ b/gsmartcontrol/src/hz/error.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/error_holder.h b/gsmartcontrol/src/hz/error_holder.h index 89fbe3d..c628946 100644 --- a/gsmartcontrol/src/hz/error_holder.h +++ b/gsmartcontrol/src/hz/error_holder.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/exceptions.h b/gsmartcontrol/src/hz/exceptions.h index a62c354..f0e2b21 100644 --- a/gsmartcontrol/src/hz/exceptions.h +++ b/gsmartcontrol/src/hz/exceptions.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/format_unit.h b/gsmartcontrol/src/hz/format_unit.h index ac48063..03afaf1 100644 --- a/gsmartcontrol/src/hz/format_unit.h +++ b/gsmartcontrol/src/hz/format_unit.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2003 - 2010 Alexander Shaduri + (C) 2003 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/format_unit_test.cpp b/gsmartcontrol/src/hz/format_unit_test.cpp index 8590380..388ea5c 100644 --- a/gsmartcontrol/src/hz/format_unit_test.cpp +++ b/gsmartcontrol/src/hz/format_unit_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_common.h b/gsmartcontrol/src/hz/fs_common.h index c061c1c..b1265df 100644 --- a/gsmartcontrol/src/hz/fs_common.h +++ b/gsmartcontrol/src/hz/fs_common.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_dir.h b/gsmartcontrol/src/hz/fs_dir.h index a7419ad..db21c04 100644 --- a/gsmartcontrol/src/hz/fs_dir.h +++ b/gsmartcontrol/src/hz/fs_dir.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_dir_platform.h b/gsmartcontrol/src/hz/fs_dir_platform.h index 65bc07c..dc3c23b 100644 --- a/gsmartcontrol/src/hz/fs_dir_platform.h +++ b/gsmartcontrol/src/hz/fs_dir_platform.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2009 - 2010 Alexander Shaduri + (C) 2009 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_dir_test.cpp b/gsmartcontrol/src/hz/fs_dir_test.cpp index daca1bc..931ca72 100644 --- a/gsmartcontrol/src/hz/fs_dir_test.cpp +++ b/gsmartcontrol/src/hz/fs_dir_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_error_holder.h b/gsmartcontrol/src/hz/fs_error_holder.h index 097fac3..84cd2b5 100644 --- a/gsmartcontrol/src/hz/fs_error_holder.h +++ b/gsmartcontrol/src/hz/fs_error_holder.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_file.h b/gsmartcontrol/src/hz/fs_file.h index 1e751f0..f283fff 100644 --- a/gsmartcontrol/src/hz/fs_file.h +++ b/gsmartcontrol/src/hz/fs_file.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_file_test.cpp b/gsmartcontrol/src/hz/fs_file_test.cpp index 2c1e9a8..1a2100d 100644 --- a/gsmartcontrol/src/hz/fs_file_test.cpp +++ b/gsmartcontrol/src/hz/fs_file_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_fstream.h b/gsmartcontrol/src/hz/fs_fstream.h index 4400a2e..81c77c8 100644 --- a/gsmartcontrol/src/hz/fs_fstream.h +++ b/gsmartcontrol/src/hz/fs_fstream.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2009 - 2010 Alexander Shaduri + (C) 2009 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_path.h b/gsmartcontrol/src/hz/fs_path.h index a189303..171e678 100644 --- a/gsmartcontrol/src/hz/fs_path.h +++ b/gsmartcontrol/src/hz/fs_path.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_path_test.cpp b/gsmartcontrol/src/hz/fs_path_test.cpp index e765756..f878fd0 100644 --- a/gsmartcontrol/src/hz/fs_path_test.cpp +++ b/gsmartcontrol/src/hz/fs_path_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_path_utils.h b/gsmartcontrol/src/hz/fs_path_utils.h index 738d3d8..7e21e1d 100644 --- a/gsmartcontrol/src/hz/fs_path_utils.h +++ b/gsmartcontrol/src/hz/fs_path_utils.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/fs_tools.h b/gsmartcontrol/src/hz/fs_tools.h index 0345eb3..372a3ca 100644 --- a/gsmartcontrol/src/hz/fs_tools.h +++ b/gsmartcontrol/src/hz/fs_tools.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/function.h b/gsmartcontrol/src/hz/function.h index 4e19a82..fd8cada 100644 --- a/gsmartcontrol/src/hz/function.h +++ b/gsmartcontrol/src/hz/function.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2007 - 2010 Thiago Rosso Adams - (C) 2009 - 2010 Alexander Shaduri + (C) 2009 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/function_impl.h b/gsmartcontrol/src/hz/function_impl.h index b3b19a1..56bbb2b 100644 --- a/gsmartcontrol/src/hz/function_impl.h +++ b/gsmartcontrol/src/hz/function_impl.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2007 - 2010 Thiago Rosso Adams - (C) 2009 - 2010 Alexander Shaduri + (C) 2009 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/hz_config.h b/gsmartcontrol/src/hz/hz_config.h index 1ec9361..c7336be 100644 --- a/gsmartcontrol/src/hz/hz_config.h +++ b/gsmartcontrol/src/hz/hz_config.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ /// \file diff --git a/gsmartcontrol/src/hz/i18n.h b/gsmartcontrol/src/hz/i18n.h index 73e3a50..0736373 100644 --- a/gsmartcontrol/src/hz/i18n.h +++ b/gsmartcontrol/src/hz/i18n.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/instance_manager.h b/gsmartcontrol/src/hz/instance_manager.h index a3d05e1..232ff14 100644 --- a/gsmartcontrol/src/hz/instance_manager.h +++ b/gsmartcontrol/src/hz/instance_manager.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/intrusive_ptr.h b/gsmartcontrol/src/hz/intrusive_ptr.h index ea9ee74..ebea9ec 100644 --- a/gsmartcontrol/src/hz/intrusive_ptr.h +++ b/gsmartcontrol/src/hz/intrusive_ptr.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2001 - 2010 Peter Dimov - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_boost_1_0.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/intrusive_scoped_lock.h b/gsmartcontrol/src/hz/intrusive_scoped_lock.h index 4814039..f7909bf 100644 --- a/gsmartcontrol/src/hz/intrusive_scoped_lock.h +++ b/gsmartcontrol/src/hz/intrusive_scoped_lock.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/launch_url.h b/gsmartcontrol/src/hz/launch_url.h index e1dfcb2..8960ba2 100644 --- a/gsmartcontrol/src/hz/launch_url.h +++ b/gsmartcontrol/src/hz/launch_url.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/local_algo.h b/gsmartcontrol/src/hz/local_algo.h index 2155720..552606b 100644 --- a/gsmartcontrol/src/hz/local_algo.h +++ b/gsmartcontrol/src/hz/local_algo.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/locale_tools.h b/gsmartcontrol/src/hz/locale_tools.h index 4a802c3..0fc6c53 100644 --- a/gsmartcontrol/src/hz/locale_tools.h +++ b/gsmartcontrol/src/hz/locale_tools.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/noncopyable.h b/gsmartcontrol/src/hz/noncopyable.h index 32af25b..5ffaf80 100644 --- a/gsmartcontrol/src/hz/noncopyable.h +++ b/gsmartcontrol/src/hz/noncopyable.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 1999 - 2010 Beman Dawes - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_boost_1_0.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/optional_value.h b/gsmartcontrol/src/hz/optional_value.h index 98df676..4594e86 100644 --- a/gsmartcontrol/src/hz/optional_value.h +++ b/gsmartcontrol/src/hz/optional_value.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/portable_snprintf.h b/gsmartcontrol/src/hz/portable_snprintf.h index f52dd3f..cab29ea 100644 --- a/gsmartcontrol/src/hz/portable_snprintf.h +++ b/gsmartcontrol/src/hz/portable_snprintf.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2009 - 2010 Alexander Shaduri + (C) 2009 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/process_signal.h b/gsmartcontrol/src/hz/process_signal.h index d12a8ec..c9647bd 100644 --- a/gsmartcontrol/src/hz/process_signal.h +++ b/gsmartcontrol/src/hz/process_signal.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/ptr_container.h b/gsmartcontrol/src/hz/ptr_container.h index 6218eef..acd90fd 100644 --- a/gsmartcontrol/src/hz/ptr_container.h +++ b/gsmartcontrol/src/hz/ptr_container.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/res_data.h b/gsmartcontrol/src/hz/res_data.h index 21af157..83a68eb 100644 --- a/gsmartcontrol/src/hz/res_data.h +++ b/gsmartcontrol/src/hz/res_data.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/scoped_array.h b/gsmartcontrol/src/hz/scoped_array.h index e0e9bd9..a497b51 100644 --- a/gsmartcontrol/src/hz/scoped_array.h +++ b/gsmartcontrol/src/hz/scoped_array.h @@ -2,7 +2,7 @@ Copyright: (C) 1998 - 2010 Greg Colvin and Beman Dawes (C) 2001 - 2010 Peter Dimov - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_boost_1_0.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/scoped_ptr.h b/gsmartcontrol/src/hz/scoped_ptr.h index dd15356..b005e3f 100644 --- a/gsmartcontrol/src/hz/scoped_ptr.h +++ b/gsmartcontrol/src/hz/scoped_ptr.h @@ -2,7 +2,7 @@ Copyright: (C) 1998 - 2010 Greg Colvin and Beman Dawes (C) 2001 - 2010 Peter Dimov - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_boost_1_0.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/shared_ptr.h b/gsmartcontrol/src/hz/shared_ptr.h index 5f732af..3f486db 100644 --- a/gsmartcontrol/src/hz/shared_ptr.h +++ b/gsmartcontrol/src/hz/shared_ptr.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2007 - 2010 Thiago Rosso Adams - (C) 2009 - 2010 Alexander Shaduri + (C) 2009 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/static_assert.h b/gsmartcontrol/src/hz/static_assert.h index b5c9b0d..98fb89d 100644 --- a/gsmartcontrol/src/hz/static_assert.h +++ b/gsmartcontrol/src/hz/static_assert.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2003 - 2010 Alexander Shaduri + (C) 2003 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/stream_cast.h b/gsmartcontrol/src/hz/stream_cast.h index 8f330fd..58bc2c2 100644 --- a/gsmartcontrol/src/hz/stream_cast.h +++ b/gsmartcontrol/src/hz/stream_cast.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2000 - 2010 Kevlin Henney - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_boost_1_0.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/string_algo.h b/gsmartcontrol/src/hz/string_algo.h index aa4aed9..0c7baae 100644 --- a/gsmartcontrol/src/hz/string_algo.h +++ b/gsmartcontrol/src/hz/string_algo.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/string_algo_test.cpp b/gsmartcontrol/src/hz/string_algo_test.cpp index 966a3e0..d422d42 100644 --- a/gsmartcontrol/src/hz/string_algo_test.cpp +++ b/gsmartcontrol/src/hz/string_algo_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/string_format.h b/gsmartcontrol/src/hz/string_format.h index 819bc5b..5cb731d 100644 --- a/gsmartcontrol/src/hz/string_format.h +++ b/gsmartcontrol/src/hz/string_format.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/string_format_test.cpp b/gsmartcontrol/src/hz/string_format_test.cpp index 3549ed7..4879e46 100644 --- a/gsmartcontrol/src/hz/string_format_test.cpp +++ b/gsmartcontrol/src/hz/string_format_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/string_num.h b/gsmartcontrol/src/hz/string_num.h index 0c55a8f..093356f 100644 --- a/gsmartcontrol/src/hz/string_num.h +++ b/gsmartcontrol/src/hz/string_num.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/string_num_test.cpp b/gsmartcontrol/src/hz/string_num_test.cpp index f96237e..19433db 100644 --- a/gsmartcontrol/src/hz/string_num_test.cpp +++ b/gsmartcontrol/src/hz/string_num_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/string_sprintf.h b/gsmartcontrol/src/hz/string_sprintf.h index cbd1475..b33dbf0 100644 --- a/gsmartcontrol/src/hz/string_sprintf.h +++ b/gsmartcontrol/src/hz/string_sprintf.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ /// \file diff --git a/gsmartcontrol/src/hz/string_sprintf_macros.h b/gsmartcontrol/src/hz/string_sprintf_macros.h index 797f39f..3463d8c 100644 --- a/gsmartcontrol/src/hz/string_sprintf_macros.h +++ b/gsmartcontrol/src/hz/string_sprintf_macros.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ /// \file diff --git a/gsmartcontrol/src/hz/string_wcmatch.h b/gsmartcontrol/src/hz/string_wcmatch.h index 997993d..9c4030c 100644 --- a/gsmartcontrol/src/hz/string_wcmatch.h +++ b/gsmartcontrol/src/hz/string_wcmatch.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 1989, 1993, 1994 The Regents of the University of California - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_bsd-ucb.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/string_wcmatch_test.cpp b/gsmartcontrol/src/hz/string_wcmatch_test.cpp index e8d3827..fe81da5 100644 --- a/gsmartcontrol/src/hz/string_wcmatch_test.cpp +++ b/gsmartcontrol/src/hz/string_wcmatch_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync.h b/gsmartcontrol/src/hz/sync.h index b33adbd..8b6f77f 100644 --- a/gsmartcontrol/src/hz/sync.h +++ b/gsmartcontrol/src/hz/sync.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_lock_ptr.h b/gsmartcontrol/src/hz/sync_lock_ptr.h index 4df7733..b4f0276 100644 --- a/gsmartcontrol/src/hz/sync_lock_ptr.h +++ b/gsmartcontrol/src/hz/sync_lock_ptr.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_multilock.h b/gsmartcontrol/src/hz/sync_multilock.h index 9d8b33b..a498d22 100644 --- a/gsmartcontrol/src/hz/sync_multilock.h +++ b/gsmartcontrol/src/hz/sync_multilock.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_multilock_test.cpp b/gsmartcontrol/src/hz/sync_multilock_test.cpp index 2c048f0..2dc1f75 100644 --- a/gsmartcontrol/src/hz/sync_multilock_test.cpp +++ b/gsmartcontrol/src/hz/sync_multilock_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_part_get_policy.h b/gsmartcontrol/src/hz/sync_part_get_policy.h index 4685cbd..67c09eb 100644 --- a/gsmartcontrol/src/hz/sync_part_get_policy.h +++ b/gsmartcontrol/src/hz/sync_part_get_policy.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_policy_boost.h b/gsmartcontrol/src/hz/sync_policy_boost.h index dda9510..b2f715d 100644 --- a/gsmartcontrol/src/hz/sync_policy_boost.h +++ b/gsmartcontrol/src/hz/sync_policy_boost.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_policy_glib.h b/gsmartcontrol/src/hz/sync_policy_glib.h index b86dc6c..937977f 100644 --- a/gsmartcontrol/src/hz/sync_policy_glib.h +++ b/gsmartcontrol/src/hz/sync_policy_glib.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_policy_glibmm.h b/gsmartcontrol/src/hz/sync_policy_glibmm.h index a13920c..43ab261 100644 --- a/gsmartcontrol/src/hz/sync_policy_glibmm.h +++ b/gsmartcontrol/src/hz/sync_policy_glibmm.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_policy_poco.h b/gsmartcontrol/src/hz/sync_policy_poco.h index 6231505..5c7fb74 100644 --- a/gsmartcontrol/src/hz/sync_policy_poco.h +++ b/gsmartcontrol/src/hz/sync_policy_poco.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_policy_pthread.h b/gsmartcontrol/src/hz/sync_policy_pthread.h index e42408a..0985b4c 100644 --- a/gsmartcontrol/src/hz/sync_policy_pthread.h +++ b/gsmartcontrol/src/hz/sync_policy_pthread.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_policy_win32.h b/gsmartcontrol/src/hz/sync_policy_win32.h index 8a4ae97..a2763fc 100644 --- a/gsmartcontrol/src/hz/sync_policy_win32.h +++ b/gsmartcontrol/src/hz/sync_policy_win32.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/sync_test.cpp b/gsmartcontrol/src/hz/sync_test.cpp index 9a04fcb..6e8637f 100644 --- a/gsmartcontrol/src/hz/sync_test.cpp +++ b/gsmartcontrol/src/hz/sync_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/system_specific.h b/gsmartcontrol/src/hz/system_specific.h index ec4b263..f7c5d3a 100644 --- a/gsmartcontrol/src/hz/system_specific.h +++ b/gsmartcontrol/src/hz/system_specific.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ /// \file diff --git a/gsmartcontrol/src/hz/tls.h b/gsmartcontrol/src/hz/tls.h index fb7c84b..193bb55 100644 --- a/gsmartcontrol/src/hz/tls.h +++ b/gsmartcontrol/src/hz/tls.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/tls_policy_boost.h b/gsmartcontrol/src/hz/tls_policy_boost.h index 2036c7a..82b2cfe 100644 --- a/gsmartcontrol/src/hz/tls_policy_boost.h +++ b/gsmartcontrol/src/hz/tls_policy_boost.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/tls_policy_glib.h b/gsmartcontrol/src/hz/tls_policy_glib.h index 9383fc1..b9625fb 100644 --- a/gsmartcontrol/src/hz/tls_policy_glib.h +++ b/gsmartcontrol/src/hz/tls_policy_glib.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/tls_policy_pthread.h b/gsmartcontrol/src/hz/tls_policy_pthread.h index 24be334..cb1af83 100644 --- a/gsmartcontrol/src/hz/tls_policy_pthread.h +++ b/gsmartcontrol/src/hz/tls_policy_pthread.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/tls_policy_win32.h b/gsmartcontrol/src/hz/tls_policy_win32.h index c353f1a..d42cc6b 100644 --- a/gsmartcontrol/src/hz/tls_policy_win32.h +++ b/gsmartcontrol/src/hz/tls_policy_win32.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/tls_test.cpp b/gsmartcontrol/src/hz/tls_test.cpp index 9bc6429..a964d73 100644 --- a/gsmartcontrol/src/hz/tls_test.cpp +++ b/gsmartcontrol/src/hz/tls_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/type_categories.h b/gsmartcontrol/src/hz/type_categories.h index b57f908..0fdbf19 100644 --- a/gsmartcontrol/src/hz/type_categories.h +++ b/gsmartcontrol/src/hz/type_categories.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2003 - 2010 Alexander Shaduri + (C) 2003 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/hz/win32_tools.h b/gsmartcontrol/src/hz/win32_tools.h index 127c6dd..47b27ce 100644 --- a/gsmartcontrol/src/hz/win32_tools.h +++ b/gsmartcontrol/src/hz/win32_tools.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2003 - 2010 Alexander Shaduri + (C) 2003 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ /// \file diff --git a/gsmartcontrol/src/libdebug/dchannel.cpp b/gsmartcontrol/src/libdebug/dchannel.cpp index 022c3c5..65f8774 100644 --- a/gsmartcontrol/src/libdebug/dchannel.cpp +++ b/gsmartcontrol/src/libdebug/dchannel.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dchannel.h b/gsmartcontrol/src/libdebug/dchannel.h index ad60ed0..c67e1ea 100644 --- a/gsmartcontrol/src/libdebug/dchannel.h +++ b/gsmartcontrol/src/libdebug/dchannel.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dcmdarg.cpp b/gsmartcontrol/src/libdebug/dcmdarg.cpp index 4e8298a..dd981f6 100644 --- a/gsmartcontrol/src/libdebug/dcmdarg.cpp +++ b/gsmartcontrol/src/libdebug/dcmdarg.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dcmdarg.h b/gsmartcontrol/src/libdebug/dcmdarg.h index 435a469..cbc24ab 100644 --- a/gsmartcontrol/src/libdebug/dcmdarg.h +++ b/gsmartcontrol/src/libdebug/dcmdarg.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dexcept.h b/gsmartcontrol/src/libdebug/dexcept.h index b2c9083..28c9afb 100644 --- a/gsmartcontrol/src/libdebug/dexcept.h +++ b/gsmartcontrol/src/libdebug/dexcept.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dflags.cpp b/gsmartcontrol/src/libdebug/dflags.cpp index 5c609e1..3121982 100644 --- a/gsmartcontrol/src/libdebug/dflags.cpp +++ b/gsmartcontrol/src/libdebug/dflags.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dflags.h b/gsmartcontrol/src/libdebug/dflags.h index 487ebea..baa738e 100644 --- a/gsmartcontrol/src/libdebug/dflags.h +++ b/gsmartcontrol/src/libdebug/dflags.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dout.cpp b/gsmartcontrol/src/libdebug/dout.cpp index 11a18ad..34b94c7 100644 --- a/gsmartcontrol/src/libdebug/dout.cpp +++ b/gsmartcontrol/src/libdebug/dout.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dout.h b/gsmartcontrol/src/libdebug/dout.h index 844ddb2..f1fc4af 100644 --- a/gsmartcontrol/src/libdebug/dout.h +++ b/gsmartcontrol/src/libdebug/dout.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dstate.cpp b/gsmartcontrol/src/libdebug/dstate.cpp index ef75028..96a86a7 100644 --- a/gsmartcontrol/src/libdebug/dstate.cpp +++ b/gsmartcontrol/src/libdebug/dstate.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dstate.h b/gsmartcontrol/src/libdebug/dstate.h index 1ccec50..1950fd1 100644 --- a/gsmartcontrol/src/libdebug/dstate.h +++ b/gsmartcontrol/src/libdebug/dstate.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dstate_pub.h b/gsmartcontrol/src/libdebug/dstate_pub.h index 781c7db..eeb3c7b 100644 --- a/gsmartcontrol/src/libdebug/dstate_pub.h +++ b/gsmartcontrol/src/libdebug/dstate_pub.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dstream.cpp b/gsmartcontrol/src/libdebug/dstream.cpp index 1b8695a..0e34275 100644 --- a/gsmartcontrol/src/libdebug/dstream.cpp +++ b/gsmartcontrol/src/libdebug/dstream.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/dstream.h b/gsmartcontrol/src/libdebug/dstream.h index e654775..bb2a428 100644 --- a/gsmartcontrol/src/libdebug/dstream.h +++ b/gsmartcontrol/src/libdebug/dstream.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/libdebug.h b/gsmartcontrol/src/libdebug/libdebug.h index bb54d6e..2f69d33 100644 --- a/gsmartcontrol/src/libdebug/libdebug.h +++ b/gsmartcontrol/src/libdebug/libdebug.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/libdebug_mini.h b/gsmartcontrol/src/libdebug/libdebug_mini.h index 5ad196f..52824b4 100644 --- a/gsmartcontrol/src/libdebug/libdebug_mini.h +++ b/gsmartcontrol/src/libdebug/libdebug_mini.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/libdebug/libdebug_test.cpp b/gsmartcontrol/src/libdebug/libdebug_test.cpp index e031014..cc1941b 100644 --- a/gsmartcontrol/src/libdebug/libdebug_test.cpp +++ b/gsmartcontrol/src/libdebug/libdebug_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/rconfig/rcautosave.h b/gsmartcontrol/src/rconfig/rcautosave.h index 0cfdd6c..51a4854 100644 --- a/gsmartcontrol/src/rconfig/rcautosave.h +++ b/gsmartcontrol/src/rconfig/rcautosave.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/rconfig/rcdump.h b/gsmartcontrol/src/rconfig/rcdump.h index 887df3b..55b7ba6 100644 --- a/gsmartcontrol/src/rconfig/rcdump.h +++ b/gsmartcontrol/src/rconfig/rcdump.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/rconfig/rcloadsave.h b/gsmartcontrol/src/rconfig/rcloadsave.h index e44bfda..927fb7f 100644 --- a/gsmartcontrol/src/rconfig/rcloadsave.h +++ b/gsmartcontrol/src/rconfig/rcloadsave.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/rconfig/rcmain.h b/gsmartcontrol/src/rconfig/rcmain.h index b0aa585..ab76f2b 100644 --- a/gsmartcontrol/src/rconfig/rcmain.h +++ b/gsmartcontrol/src/rconfig/rcmain.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/rconfig/rconfig.h b/gsmartcontrol/src/rconfig/rconfig.h index 824b901..9c70275 100644 --- a/gsmartcontrol/src/rconfig/rconfig.h +++ b/gsmartcontrol/src/rconfig/rconfig.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/rconfig/rconfig_mini.h b/gsmartcontrol/src/rconfig/rconfig_mini.h index e5eb792..599ca78 100644 --- a/gsmartcontrol/src/rconfig/rconfig_mini.h +++ b/gsmartcontrol/src/rconfig/rconfig_mini.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_zlib.txt file ***************************************************************************/ diff --git a/gsmartcontrol/src/rconfig/rconfig_test.cpp b/gsmartcontrol/src/rconfig/rconfig_test.cpp index 88dd103..e7f18cc 100644 --- a/gsmartcontrol/src/rconfig/rconfig_test.cpp +++ b/gsmartcontrol/src/rconfig/rconfig_test.cpp @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/ diff --git a/gsmartcontrol/src/rmn/resource_base.h b/gsmartcontrol/src/rmn/resource_base.h index dc32e83..272f6de 100644 --- a/gsmartcontrol/src/rmn/resource_base.h +++ b/gsmartcontrol/src/rmn/resource_base.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2003 - 2010 Irakli Elizbarashvili - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/resource_data_any.h b/gsmartcontrol/src/rmn/resource_data_any.h index 646d4cf..33cfc18 100644 --- a/gsmartcontrol/src/rmn/resource_data_any.h +++ b/gsmartcontrol/src/rmn/resource_data_any.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/resource_data_locking.h b/gsmartcontrol/src/rmn/resource_data_locking.h index 6c90aca..3a94578 100644 --- a/gsmartcontrol/src/rmn/resource_data_locking.h +++ b/gsmartcontrol/src/rmn/resource_data_locking.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/resource_data_one.h b/gsmartcontrol/src/rmn/resource_data_one.h index deae711..706ece8 100644 --- a/gsmartcontrol/src/rmn/resource_data_one.h +++ b/gsmartcontrol/src/rmn/resource_data_one.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/resource_data_types.h b/gsmartcontrol/src/rmn/resource_data_types.h index b32f2f2..8c2a3dd 100644 --- a/gsmartcontrol/src/rmn/resource_data_types.h +++ b/gsmartcontrol/src/rmn/resource_data_types.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/resource_exception.h b/gsmartcontrol/src/rmn/resource_exception.h index a8f4abf..2f795f8 100644 --- a/gsmartcontrol/src/rmn/resource_exception.h +++ b/gsmartcontrol/src/rmn/resource_exception.h @@ -1,6 +1,6 @@ /************************************************************************** Copyright: - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/resource_node.h b/gsmartcontrol/src/rmn/resource_node.h index 5476c07..990e77a 100644 --- a/gsmartcontrol/src/rmn/resource_node.h +++ b/gsmartcontrol/src/rmn/resource_node.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2003 - 2010 Irakli Elizbarashvili - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/resource_node_dump.h b/gsmartcontrol/src/rmn/resource_node_dump.h index b960559..e6b96af 100644 --- a/gsmartcontrol/src/rmn/resource_node_dump.h +++ b/gsmartcontrol/src/rmn/resource_node_dump.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2003 - 2010 Irakli Elizbarashvili - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/resource_serialization.h b/gsmartcontrol/src/rmn/resource_serialization.h index 60002c6..dcac2c6 100644 --- a/gsmartcontrol/src/rmn/resource_serialization.h +++ b/gsmartcontrol/src/rmn/resource_serialization.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2003 - 2010 Irakli Elizbarashvili - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/rmn.h b/gsmartcontrol/src/rmn/rmn.h index 40b6eb3..ff9a0b4 100644 --- a/gsmartcontrol/src/rmn/rmn.h +++ b/gsmartcontrol/src/rmn/rmn.h @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2003 - 2010 Irakli Elizbarashvili - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: diff --git a/gsmartcontrol/src/rmn/rmn_test.cpp b/gsmartcontrol/src/rmn/rmn_test.cpp index ee63b01..1fcc54c 100644 --- a/gsmartcontrol/src/rmn/rmn_test.cpp +++ b/gsmartcontrol/src/rmn/rmn_test.cpp @@ -1,7 +1,7 @@ /************************************************************************** Copyright: (C) 2003 - 2010 Irakli Elizbarashvili - (C) 2008 - 2010 Alexander Shaduri + (C) 2008 - 2011 Alexander Shaduri License: See LICENSE_unlicense.txt ***************************************************************************/