From c1e909d0ffa2824cb8ac12170f8a214476b53171 Mon Sep 17 00:00:00 2001 From: XXX Date: Sat, 17 Oct 2020 13:13:56 -0600 Subject: [PATCH 01/11] Update to 3.1.0 release with patch for RemoteBCL bug --- FindOpenStudioSDK.cmake | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/FindOpenStudioSDK.cmake b/FindOpenStudioSDK.cmake index e1f61dd45..8964ae77b 100644 --- a/FindOpenStudioSDK.cmake +++ b/FindOpenStudioSDK.cmake @@ -6,22 +6,22 @@ set(OPENSTUDIO_VERSION "${OPENSTUDIO_VERSION_MAJOR}.${OPENSTUDIO_VERSION_MINOR}. #If this is a release enter the SHA as "+79857912c4" #set(OPENSTUDIO_VERSION_SHA "+09b7c8a554") #If this is a pre-release enter the pre-release and SHA as "-rc1+79857912c4" -set(OPENSTUDIO_VERSION_SHA "-rc3+dec0b9e069") +set(OPENSTUDIO_VERSION_SHA "+82d3ea2978") # Paths where the cmake-downloaded archives will be put set(OPENSTUDIO_ARCHIVE_DIR "${PROJECT_BINARY_DIR}/OpenStudio-${OPENSTUDIO_VERSION}") # If downloaded, we need the SHA to match. This block is here since we need "OPENSTUDIO_PLATFORM" anyways if(APPLE) - set(OPENSTUDIO_EXPECTED_HASH 2053c404707fbc636f5000d6bd927111) + set(OPENSTUDIO_EXPECTED_HASH 9706edd710bd5471c1063c9d08789267) set(OPENSTUDIO_PLATFORM "Darwin") set(OPENSTUDIO_EXT "tar.gz") elseif(UNIX) - set(OPENSTUDIO_EXPECTED_HASH f66add09d7b5564b8e13f4c0d4ec9565) + set(OPENSTUDIO_EXPECTED_HASH 7fe8354f4f8c11ba0945d77f908ab8c7) set(OPENSTUDIO_PLATFORM "Linux") set(OPENSTUDIO_EXT "tar.gz") elseif(WIN32) - set(OPENSTUDIO_EXPECTED_HASH ca7893d7c21326af948894342b872c47) + set(OPENSTUDIO_EXPECTED_HASH 10a754b836869e2d3fa03a190587ba3a) set(OPENSTUDIO_PLATFORM "Windows") set(OPENSTUDIO_EXT "tar.gz") endif() @@ -55,8 +55,8 @@ else() # Note: this should be set to ""http://openstudio-ci-builds.s3-website-us-west-2.amazonaws.com/develop" for nightly builds # Occasionally we can point to a specific PR by using something like ""http://openstudio-ci-builds.s3-website-us-west-2.amazonaws.com/PR-4080" set(OPENSTUDIO_BASELINK_CI - "http://openstudio-ci-builds.s3-website-us-west-2.amazonaws.com/develop" - #"http://openstudio-ci-builds.s3-website-us-west-2.amazonaws.com/PR-4066" + #"http://openstudio-ci-builds.s3-website-us-west-2.amazonaws.com/develop" + "http://openstudio-ci-builds.s3-website-us-west-2.amazonaws.com/PR-4121" CACHE STRING "Base link to where the openstudio develop archives are hosted" FORCE) # Make subdir if it doesn't exist From d5e3aa8c06d3d19fb99b1aed45c297b274ffdccb Mon Sep 17 00:00:00 2001 From: XXX Date: Sat, 17 Oct 2020 13:37:56 -0600 Subject: [PATCH 02/11] Fix cppcheck errors --- CMakeLists.txt | 1 + src/openstudio_app/test/Resources_GTest.cpp | 2 +- src/openstudio_lib/WindowMaterialScreenInspectorView.cpp | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bf0602c28..1c568e59d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -409,6 +409,7 @@ set(SWIG_EXECUTABLE "${CURRENT_CONAN_SWIG_ROOT}/bin/swig") set(SWIG_LIB "${CURRENT_CONAN_SWIG_ROOT}/bin/swiglib") # Qt +# e.g. QT_INSTALL_DIR = C:/Qt-5.15.0/5.15.0/msvc2019_64 set(QT_INSTALL_DIR "" CACHE PATH "Path to Qt Install") mark_as_advanced(QT_INSTALL_DIR) set(QT_VERSION "5.15.0") diff --git a/src/openstudio_app/test/Resources_GTest.cpp b/src/openstudio_app/test/Resources_GTest.cpp index 56f0e6b00..6f431626a 100644 --- a/src/openstudio_app/test/Resources_GTest.cpp +++ b/src/openstudio_app/test/Resources_GTest.cpp @@ -70,7 +70,7 @@ TEST_F(OpenStudioAppFixture, Resources_Templates) { ASSERT_TRUE(model); // check that each space load has a parent space type - std::vector spaceLoads; + std::vector spaceLoads = model.getModelObjects(); for (const model::SpaceLoad& spaceLoad : spaceLoads) { EXPECT_TRUE(spaceLoad.spaceType()); } diff --git a/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp b/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp index aa822cfc0..147204911 100644 --- a/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp @@ -247,7 +247,6 @@ void WindowMaterialScreenInspectorView::onUpdate() { refresh(); } -// cppcheck-suppress constParameter void WindowMaterialScreenInspectorView::attach(openstudio::model::Screen& screen) { m_screen = screen; // m_reflectedBeamTransmittanceAccountingMethod->bind(screen,"reflectedBeamTransmittanceAccountingMethod"); From bcdf344a984b213c3aa2c09a35ce547051e51bb2 Mon Sep 17 00:00:00 2001 From: XXX Date: Sat, 17 Oct 2020 13:39:14 -0600 Subject: [PATCH 03/11] Fix compile error --- src/openstudio_app/test/Resources_GTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openstudio_app/test/Resources_GTest.cpp b/src/openstudio_app/test/Resources_GTest.cpp index 6f431626a..ed6655de8 100644 --- a/src/openstudio_app/test/Resources_GTest.cpp +++ b/src/openstudio_app/test/Resources_GTest.cpp @@ -70,7 +70,7 @@ TEST_F(OpenStudioAppFixture, Resources_Templates) { ASSERT_TRUE(model); // check that each space load has a parent space type - std::vector spaceLoads = model.getModelObjects(); + std::vector spaceLoads = model->getModelObjects(); for (const model::SpaceLoad& spaceLoad : spaceLoads) { EXPECT_TRUE(spaceLoad.spaceType()); } From 3b07a9459ea72a62c74c1c48beaae29f2a5f62b8 Mon Sep 17 00:00:00 2001 From: XXX Date: Sat, 17 Oct 2020 17:59:23 -0600 Subject: [PATCH 04/11] Remove RC --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c568e59d..5bcf12d9c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -191,7 +191,7 @@ endif() # TODO: Modify the more specific variables as needed to indicate prerelease, etc # Keep in beta in-between release cycles. Set to empty string (or comment out) for official) -set(PROJECT_VERSION_PRERELEASE "rc3") +set(PROJECT_VERSION_PRERELEASE "") # OpenStudio version: Only include Major.Minor.Patch, eg "3.0.0", even if you have a prerelease tag set(OPENSTUDIOAPPLICATION_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") From 8dbc397a5b5d3cbbb5c1a014b31954222c60493c Mon Sep 17 00:00:00 2001 From: XXX Date: Fri, 23 Oct 2020 15:11:21 -0600 Subject: [PATCH 05/11] Update license based on recommendations from NREL legal --- ...Sustainable-Energy-Before-Before-8-2020.md | 26 +++++++++++++++++++ LICENSE.md | 2 +- src/openstudio_app/AboutBox.hpp.in | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 LICENSE-Alliance-For-Sustainable-Energy-Before-Before-8-2020.md diff --git a/LICENSE-Alliance-For-Sustainable-Energy-Before-Before-8-2020.md b/LICENSE-Alliance-For-Sustainable-Energy-Before-Before-8-2020.md new file mode 100644 index 000000000..0369a51a4 --- /dev/null +++ b/LICENSE-Alliance-For-Sustainable-Energy-Before-Before-8-2020.md @@ -0,0 +1,26 @@ +OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the +following conditions are met: + +(1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following +disclaimer. + +(2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided with the distribution. + +(3) Neither the name of the copyright holder nor the names of any contributors may be used to endorse or promote products +derived from this software without specific prior written permission from the respective party. + +(4) Other than as required in clauses (1) and (2), distributions in any form of modifications or other derivative works +may not use the "OpenStudio" trademark, "OS", "os", or any other confusingly similar designation without specific prior +written permission from Alliance for Sustainable Energy, LLC. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED +STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/LICENSE.md b/LICENSE.md index 0369a51a4..5fc5206b8 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/openstudio_app/AboutBox.hpp.in b/src/openstudio_app/AboutBox.hpp.in index 7e2f6c87d..ea8c487ac 100644 --- a/src/openstudio_app/AboutBox.hpp.in +++ b/src/openstudio_app/AboutBox.hpp.in @@ -5,7 +5,7 @@

Version: ${OPENSTUDIOAPPLICATION_LONG_VERSION}

\

Compiler: ${ABOUT_COMPILER}

\

openstudio SDK (core) version: ${openstudio_VERSION}

\ -

Copyright © 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.

\ +

Copyright © 2020-2020, OpenStudio Coalition and other contributors. All rights reserved.

\

OpenStudio is a cross-platform tool to support whole building energy and daylight modeling using EnergyPlus and Radiance.

\

OpenStudio uses the following QT modules (version 5.15.0) that are dynamically linked using GNU Lesser General Public License (LGPL): \ Qt5Core, Qt5Widgets, Qt5Sql, Qt5Network, Qt5Xml, Qt5Concurrent, Qt5PrintSupport, Qt5Gui,Qt5Quick, Qt5QuickWidgets, Qt5Qml, Qt5WebChannel, Qt5Positioning, Qt5WebEngine, Qt5WebEngineWidgets, QtWebEngineCore, Qt5DBus, Qt5WinExtras

\ From 3269e69b8c2d657b9321d36b2ab2e11aa1f379be Mon Sep 17 00:00:00 2001 From: XXX Date: Fri, 23 Oct 2020 15:15:10 -0600 Subject: [PATCH 06/11] Add script to apply copyright --- developer/ruby/ApplyCopyright.rb | 142 +++++++++++++++++++++++++++++++ 1 file changed, 142 insertions(+) create mode 100644 developer/ruby/ApplyCopyright.rb diff --git a/developer/ruby/ApplyCopyright.rb b/developer/ruby/ApplyCopyright.rb new file mode 100644 index 000000000..875bd140a --- /dev/null +++ b/developer/ruby/ApplyCopyright.rb @@ -0,0 +1,142 @@ +# Inserts copyright at beginning of each +# +# Inputs: +# ARGV[0] - path to top level cmake source directory (one level above 'src' directory) + +require 'pathname' +require 'rubygems' +require 'fileutils' + +include FileUtils + +# check that called from command line directly +if not ($0 == __FILE__) + puts "#{__FILE__} called from external script" + exit +end + +basepath = ARGV[0].gsub("\\", "/") + +copyright = "/***********************************************************************************************************************\n" +ruby_copyright = "########################################################################################################################\n" +File.open(basepath + "/../LICENSE.md") do |file| + while (line = file.gets) + if line.strip.empty? + copyright += "*" + line + ruby_copyright += "#" + line + + else + copyright += "* " + line + ruby_copyright += "# " + line + end + end +end +copyright += "***********************************************************************************************************************/\n\n" +ruby_copyright += "########################################################################################################################\n\n" + +# first do c++ + +# exceptions are files that are not part of OpenStudio +exceptions = [basepath + "/src/qtwinmigrate/", + "mainpage.hpp"] + +# glob for hpp and cpp +files = Dir.glob(basepath + "/src/**/*.[ch]pp") +files.concat Dir.glob(basepath + "/ruby/**/*.[ch]pp") +files.concat Dir.glob(basepath + "/src/**/*.cxx.in") +files.concat Dir.glob(basepath + "/src/**/*.tmp") + +# reject exceptions +files.reject! do |p| + result = false + exceptions.each do |e| + if p.include?(e) + result = true + puts p + break + end + end + result +end + +# loop over all files +files.each do |p| + + # start with copyright + text = copyright + + # read file + File.open(p, "r") do |file| + # read until end of current copyright + while (line = file.gets) + if not /^\s?[\/\*]/.match(line) + if not line.chomp.empty? + text += line + end + break + end + end + + # now keep rest of file + while (line = file.gets) + text += line + end + end + + # write file + File.open(p, "w") do |file| + file << text + end + +end + +# now do ruby + +# exceptions are files that are not part of OpenStudio +exceptions = [] + +# glob for rb +files = Dir.glob(basepath + "/ruby/**/*.rb") + +# reject exceptions +files.reject! do |p| + result = false + exceptions.each do |e| + if p.include?(e) + result = true + break + end + end + result +end + +# loop over all files +files.each do |p| + + # start with copyright + text = ruby_copyright + + # read file + File.open(p, "r") do |file| + # read until end of current copyright + while (line = file.gets) + if not /^#/.match(line) + if not line.chomp.empty? + text += line + end + break + end + end + + # now keep rest of file + while (line = file.gets) + text += line + end + end + + # write file + File.open(p, "w") do |file| + file << text + end + +end From 451f2443dffc321142271f3349381a020f865b49 Mon Sep 17 00:00:00 2001 From: XXX Date: Fri, 23 Oct 2020 15:18:13 -0600 Subject: [PATCH 07/11] Fix script --- developer/ruby/ApplyCopyright.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer/ruby/ApplyCopyright.rb b/developer/ruby/ApplyCopyright.rb index 875bd140a..e653a8989 100644 --- a/developer/ruby/ApplyCopyright.rb +++ b/developer/ruby/ApplyCopyright.rb @@ -19,7 +19,7 @@ copyright = "/***********************************************************************************************************************\n" ruby_copyright = "########################################################################################################################\n" -File.open(basepath + "/../LICENSE.md") do |file| +File.open(basepath + "/LICENSE.md") do |file| while (line = file.gets) if line.strip.empty? copyright += "*" + line From 87b3610e9573bd31fbe3a3d067846a8395e6c552 Mon Sep 17 00:00:00 2001 From: XXX Date: Fri, 23 Oct 2020 15:19:21 -0600 Subject: [PATCH 08/11] Update copyrights in files --- ruby/RubyAPI.hpp | 2 +- ruby/openstudio_modeleditor.rb | 2 +- ruby/openstudio_modeleditor_rb.cpp | 2 +- ruby/test/PathWatcher_Test.rb | 2 +- ruby/test/WorkspaceWatcher_Test.rb | 2 +- src/bimserver/BIMserverAPI.hpp | 2 +- src/bimserver/BIMserverConnection.cpp | 2 +- src/bimserver/BIMserverConnection.hpp | 2 +- src/bimserver/ProjectImporter.cpp | 2 +- src/bimserver/ProjectImporter.hpp | 2 +- src/bimserver/Test/BIMserverFixture.cpp | 2 +- src/bimserver/Test/BIMserverFixture.hpp | 2 +- src/model_editor/AccessPolicyStore.cpp | 2 +- src/model_editor/AccessPolicyStore.hpp | 2 +- src/model_editor/Application.cpp | 2 +- src/model_editor/Application.hpp | 2 +- src/model_editor/BridgeClasses.cpp | 2 +- src/model_editor/BridgeClasses.hpp | 2 +- src/model_editor/GithubReleases.cpp | 2 +- src/model_editor/GithubReleases.hpp | 2 +- src/model_editor/IGLineEdit.cpp | 2 +- src/model_editor/IGLineEdit.hpp | 2 +- src/model_editor/IGPrecisionDialog.cpp | 2 +- src/model_editor/IGPrecisionDialog.hpp | 2 +- src/model_editor/IGSpinBoxes.cpp | 2 +- src/model_editor/IGSpinBoxes.hpp | 2 +- src/model_editor/InspectorDialog.cpp | 2 +- src/model_editor/InspectorDialog.hpp | 2 +- src/model_editor/InspectorGadget.cpp | 2 +- src/model_editor/InspectorGadget.hpp | 2 +- src/model_editor/ListWidget.cpp | 2 +- src/model_editor/ListWidget.hpp | 2 +- src/model_editor/ModalDialogs.cpp | 2 +- src/model_editor/ModalDialogs.hpp | 2 +- src/model_editor/ModelEditorAPI.hpp | 2 +- src/model_editor/OSProgressBar.cpp | 2 +- src/model_editor/OSProgressBar.hpp | 2 +- src/model_editor/PathWatcher.cpp | 2 +- src/model_editor/PathWatcher.hpp | 2 +- src/model_editor/QMetaTypes.cpp | 2 +- src/model_editor/QMetaTypes.hpp | 2 +- src/model_editor/TableView.cpp | 2 +- src/model_editor/TableView.hpp | 2 +- src/model_editor/TableWidget.cpp | 2 +- src/model_editor/TableWidget.hpp | 2 +- src/model_editor/TestButton.cpp | 2 +- src/model_editor/TestButton.hpp | 2 +- src/model_editor/TreeView.cpp | 2 +- src/model_editor/TreeView.hpp | 2 +- src/model_editor/UserSettings.cpp | 2 +- src/model_editor/UserSettings.hpp | 2 +- src/model_editor/Utilities.cpp | 2 +- src/model_editor/Utilities.hpp | 2 +- src/model_editor/test/GithubReleases_GTest.cpp | 2 +- src/model_editor/test/InspectorDialog_GTest.cpp | 2 +- src/model_editor/test/ModalDialogs_GTest.cpp | 2 +- src/model_editor/test/ModelEditorFixture.cpp | 2 +- src/model_editor/test/ModelEditorFixture.hpp | 2 +- src/model_editor/test/PathWatcher_GTest.cpp | 2 +- src/model_editor/test/QMetaTypes_GTest.cpp | 2 +- src/model_editor/test/Utilities_GTest.cpp | 2 +- src/openstudio_app/ExternalToolsDialog.cpp | 2 +- src/openstudio_app/ExternalToolsDialog.hpp | 2 +- src/openstudio_app/LibraryDialog.cpp | 2 +- src/openstudio_app/LibraryDialog.hpp | 2 +- src/openstudio_app/OpenStudioApp.cpp | 2 +- src/openstudio_app/OpenStudioApp.hpp | 2 +- src/openstudio_app/StartupMenu.cpp | 2 +- src/openstudio_app/StartupMenu.hpp | 2 +- src/openstudio_app/StartupView.cpp | 2 +- src/openstudio_app/StartupView.hpp | 2 +- src/openstudio_app/main.cpp | 2 +- src/openstudio_app/test/OpenStudioAppFixture.cpp | 2 +- src/openstudio_app/test/OpenStudioAppFixture.hpp | 2 +- src/openstudio_app/test/Resources_GTest.cpp | 2 +- src/openstudio_app/test/Units_GTest.cpp | 2 +- src/openstudio_lib/ApplyMeasureNowDialog.cpp | 2 +- src/openstudio_lib/ApplyMeasureNowDialog.hpp | 2 +- src/openstudio_lib/BCLComponentItem.cpp | 2 +- src/openstudio_lib/BCLComponentItem.hpp | 2 +- src/openstudio_lib/BuildingInspectorView.cpp | 2 +- src/openstudio_lib/BuildingInspectorView.hpp | 2 +- src/openstudio_lib/CollapsibleInspector.cpp | 2 +- src/openstudio_lib/CollapsibleInspector.hpp | 2 +- src/openstudio_lib/ConstructionAirBoundaryInspectorView.cpp | 2 +- src/openstudio_lib/ConstructionAirBoundaryInspectorView.hpp | 2 +- .../ConstructionCfactorUndergroundWallInspectorView.cpp | 2 +- .../ConstructionCfactorUndergroundWallInspectorView.hpp | 2 +- .../ConstructionFfactorGroundFloorInspectorView.cpp | 2 +- .../ConstructionFfactorGroundFloorInspectorView.hpp | 2 +- src/openstudio_lib/ConstructionInspectorView.cpp | 2 +- src/openstudio_lib/ConstructionInspectorView.hpp | 2 +- src/openstudio_lib/ConstructionInternalSourceInspectorView.cpp | 2 +- src/openstudio_lib/ConstructionInternalSourceInspectorView.hpp | 2 +- src/openstudio_lib/ConstructionObjectVectorController.cpp | 2 +- src/openstudio_lib/ConstructionObjectVectorController.hpp | 2 +- src/openstudio_lib/ConstructionWindowDataFileInspectorView.cpp | 2 +- src/openstudio_lib/ConstructionWindowDataFileInspectorView.hpp | 2 +- src/openstudio_lib/ConstructionsController.cpp | 2 +- src/openstudio_lib/ConstructionsController.hpp | 2 +- src/openstudio_lib/ConstructionsTabController.cpp | 2 +- src/openstudio_lib/ConstructionsTabController.hpp | 2 +- src/openstudio_lib/ConstructionsTabView.cpp | 2 +- src/openstudio_lib/ConstructionsTabView.hpp | 2 +- src/openstudio_lib/ConstructionsView.cpp | 2 +- src/openstudio_lib/ConstructionsView.hpp | 2 +- src/openstudio_lib/DefaultConstructionSetInspectorView.cpp | 2 +- src/openstudio_lib/DefaultConstructionSetInspectorView.hpp | 2 +- src/openstudio_lib/DefaultConstructionSetsController.cpp | 2 +- src/openstudio_lib/DefaultConstructionSetsController.hpp | 2 +- src/openstudio_lib/DefaultConstructionSetsView.cpp | 2 +- src/openstudio_lib/DefaultConstructionSetsView.hpp | 2 +- src/openstudio_lib/DesignDayGridView.cpp | 2 +- src/openstudio_lib/DesignDayGridView.hpp | 2 +- src/openstudio_lib/EMSInspectorView.cpp | 2 +- src/openstudio_lib/EMSInspectorView.hpp | 2 +- src/openstudio_lib/ElectricEquipmentInspectorView.cpp | 2 +- src/openstudio_lib/ElectricEquipmentInspectorView.hpp | 2 +- src/openstudio_lib/FacilityExteriorEquipmentGridView.cpp | 2 +- src/openstudio_lib/FacilityExteriorEquipmentGridView.hpp | 2 +- src/openstudio_lib/FacilityShadingGridView.cpp | 2 +- src/openstudio_lib/FacilityShadingGridView.hpp | 2 +- src/openstudio_lib/FacilityStoriesGridView.cpp | 2 +- src/openstudio_lib/FacilityStoriesGridView.hpp | 2 +- src/openstudio_lib/FacilityTabController.cpp | 2 +- src/openstudio_lib/FacilityTabController.hpp | 2 +- src/openstudio_lib/FacilityTabView.cpp | 2 +- src/openstudio_lib/FacilityTabView.hpp | 2 +- src/openstudio_lib/GasEquipmentInspectorView.cpp | 2 +- src/openstudio_lib/GasEquipmentInspectorView.hpp | 2 +- src/openstudio_lib/GeometryEditorController.cpp | 2 +- src/openstudio_lib/GeometryEditorController.hpp | 2 +- src/openstudio_lib/GeometryEditorView.cpp | 2 +- src/openstudio_lib/GeometryEditorView.hpp | 2 +- src/openstudio_lib/GeometryPreviewController.cpp | 2 +- src/openstudio_lib/GeometryPreviewController.hpp | 2 +- src/openstudio_lib/GeometryPreviewView.cpp | 2 +- src/openstudio_lib/GeometryPreviewView.hpp | 2 +- src/openstudio_lib/GeometryTabController.cpp | 2 +- src/openstudio_lib/GeometryTabController.hpp | 2 +- src/openstudio_lib/GeometryTabView.cpp | 2 +- src/openstudio_lib/GeometryTabView.hpp | 2 +- src/openstudio_lib/GridItem.cpp | 2 +- src/openstudio_lib/GridItem.hpp | 2 +- src/openstudio_lib/GridScene.cpp | 2 +- src/openstudio_lib/GridScene.hpp | 2 +- src/openstudio_lib/GridViewSubTab.cpp | 2 +- src/openstudio_lib/GridViewSubTab.hpp | 2 +- src/openstudio_lib/HVACSystemsController.cpp | 2 +- src/openstudio_lib/HVACSystemsController.hpp | 2 +- src/openstudio_lib/HVACSystemsTabController.cpp | 2 +- src/openstudio_lib/HVACSystemsTabController.hpp | 2 +- src/openstudio_lib/HVACSystemsTabView.cpp | 2 +- src/openstudio_lib/HVACSystemsTabView.hpp | 2 +- src/openstudio_lib/HVACSystemsView.cpp | 2 +- src/openstudio_lib/HVACSystemsView.hpp | 2 +- src/openstudio_lib/HVACTemplateHelperDialog.cpp | 2 +- src/openstudio_lib/HVACTemplateHelperDialog.hpp | 2 +- src/openstudio_lib/HorizontalTabWidget.cpp | 2 +- src/openstudio_lib/HorizontalTabWidget.hpp | 2 +- src/openstudio_lib/IconLibrary.cpp | 2 +- src/openstudio_lib/IconLibrary.hpp | 2 +- src/openstudio_lib/InspectorController.cpp | 2 +- src/openstudio_lib/InspectorController.hpp | 2 +- src/openstudio_lib/InspectorView.cpp | 2 +- src/openstudio_lib/InspectorView.hpp | 2 +- src/openstudio_lib/InternalMassInspectorView.cpp | 2 +- src/openstudio_lib/InternalMassInspectorView.hpp | 2 +- src/openstudio_lib/LibraryTabWidget.cpp | 2 +- src/openstudio_lib/LibraryTabWidget.hpp | 2 +- src/openstudio_lib/LifeCycleCostsTabView.cpp | 2 +- src/openstudio_lib/LifeCycleCostsTabView.hpp | 2 +- src/openstudio_lib/LightsInspectorView.cpp | 2 +- src/openstudio_lib/LightsInspectorView.hpp | 2 +- src/openstudio_lib/LoadsController.cpp | 2 +- src/openstudio_lib/LoadsController.hpp | 2 +- src/openstudio_lib/LoadsTabController.cpp | 2 +- src/openstudio_lib/LoadsTabController.hpp | 2 +- src/openstudio_lib/LoadsTabView.cpp | 2 +- src/openstudio_lib/LoadsTabView.hpp | 2 +- src/openstudio_lib/LoadsView.cpp | 2 +- src/openstudio_lib/LoadsView.hpp | 2 +- src/openstudio_lib/LocationTabController.cpp | 2 +- src/openstudio_lib/LocationTabController.hpp | 2 +- src/openstudio_lib/LocationTabView.cpp | 2 +- src/openstudio_lib/LocationTabView.hpp | 2 +- src/openstudio_lib/LoopChooserView.cpp | 2 +- src/openstudio_lib/LoopChooserView.hpp | 2 +- src/openstudio_lib/LoopLibraryDialog.cpp | 2 +- src/openstudio_lib/LoopLibraryDialog.hpp | 2 +- src/openstudio_lib/LoopScene.cpp | 2 +- src/openstudio_lib/LoopScene.hpp | 2 +- src/openstudio_lib/LuminaireInspectorView.cpp | 2 +- src/openstudio_lib/LuminaireInspectorView.hpp | 2 +- src/openstudio_lib/MainMenu.cpp | 2 +- src/openstudio_lib/MainMenu.hpp | 2 +- src/openstudio_lib/MainRightColumnController.cpp | 2 +- src/openstudio_lib/MainRightColumnController.hpp | 2 +- src/openstudio_lib/MainTabController.cpp | 2 +- src/openstudio_lib/MainTabController.hpp | 2 +- src/openstudio_lib/MainTabView.cpp | 2 +- src/openstudio_lib/MainTabView.hpp | 2 +- src/openstudio_lib/MainWindow.cpp | 2 +- src/openstudio_lib/MainWindow.hpp | 2 +- src/openstudio_lib/MaterialAirGapInspectorView.cpp | 2 +- src/openstudio_lib/MaterialAirGapInspectorView.hpp | 2 +- src/openstudio_lib/MaterialAirWallInspectorView.cpp | 2 +- src/openstudio_lib/MaterialAirWallInspectorView.hpp | 2 +- src/openstudio_lib/MaterialInfraredTransparentInspectorView.cpp | 2 +- src/openstudio_lib/MaterialInfraredTransparentInspectorView.hpp | 2 +- src/openstudio_lib/MaterialInspectorView.cpp | 2 +- src/openstudio_lib/MaterialInspectorView.hpp | 2 +- src/openstudio_lib/MaterialNoMassInspectorView.cpp | 2 +- src/openstudio_lib/MaterialNoMassInspectorView.hpp | 2 +- src/openstudio_lib/MaterialRoofVegetationInspectorView.cpp | 2 +- src/openstudio_lib/MaterialRoofVegetationInspectorView.hpp | 2 +- src/openstudio_lib/MaterialsController.cpp | 2 +- src/openstudio_lib/MaterialsController.hpp | 2 +- src/openstudio_lib/MaterialsView.cpp | 2 +- src/openstudio_lib/MaterialsView.hpp | 2 +- src/openstudio_lib/ModelObjectInspectorView.cpp | 2 +- src/openstudio_lib/ModelObjectInspectorView.hpp | 2 +- src/openstudio_lib/ModelObjectItem.cpp | 2 +- src/openstudio_lib/ModelObjectItem.hpp | 2 +- src/openstudio_lib/ModelObjectListView.cpp | 2 +- src/openstudio_lib/ModelObjectListView.hpp | 2 +- src/openstudio_lib/ModelObjectTreeItems.cpp | 2 +- src/openstudio_lib/ModelObjectTreeItems.hpp | 2 +- src/openstudio_lib/ModelObjectTreeWidget.cpp | 2 +- src/openstudio_lib/ModelObjectTreeWidget.hpp | 2 +- src/openstudio_lib/ModelObjectTypeItem.cpp | 2 +- src/openstudio_lib/ModelObjectTypeItem.hpp | 2 +- src/openstudio_lib/ModelObjectTypeListView.cpp | 2 +- src/openstudio_lib/ModelObjectTypeListView.hpp | 2 +- src/openstudio_lib/ModelObjectVectorController.cpp | 2 +- src/openstudio_lib/ModelObjectVectorController.hpp | 2 +- src/openstudio_lib/ModelSubTabController.cpp | 2 +- src/openstudio_lib/ModelSubTabController.hpp | 2 +- src/openstudio_lib/ModelSubTabView.cpp | 2 +- src/openstudio_lib/ModelSubTabView.hpp | 2 +- src/openstudio_lib/OSAppBase.cpp | 2 +- src/openstudio_lib/OSAppBase.hpp | 2 +- src/openstudio_lib/OSCollapsibleItem.cpp | 2 +- src/openstudio_lib/OSCollapsibleItem.hpp | 2 +- src/openstudio_lib/OSCollapsibleItemHeader.cpp | 2 +- src/openstudio_lib/OSCollapsibleItemHeader.hpp | 2 +- src/openstudio_lib/OSCollapsibleItemList.cpp | 2 +- src/openstudio_lib/OSCollapsibleItemList.hpp | 2 +- src/openstudio_lib/OSDocument.cpp | 2 +- src/openstudio_lib/OSDocument.hpp | 2 +- src/openstudio_lib/OSDropZone.cpp | 2 +- src/openstudio_lib/OSDropZone.hpp | 2 +- src/openstudio_lib/OSInspectorView.cpp | 2 +- src/openstudio_lib/OSInspectorView.hpp | 2 +- src/openstudio_lib/OSItem.cpp | 2 +- src/openstudio_lib/OSItem.hpp | 2 +- src/openstudio_lib/OSItemList.cpp | 2 +- src/openstudio_lib/OSItemList.hpp | 2 +- src/openstudio_lib/OSItemSelector.cpp | 2 +- src/openstudio_lib/OSItemSelector.hpp | 2 +- src/openstudio_lib/OSItemSelectorButtons.cpp | 2 +- src/openstudio_lib/OSItemSelectorButtons.hpp | 2 +- src/openstudio_lib/OSVectorController.cpp | 2 +- src/openstudio_lib/OSVectorController.hpp | 2 +- src/openstudio_lib/OSWebEnginePage.cpp | 2 +- src/openstudio_lib/OSWebEnginePage.hpp | 2 +- src/openstudio_lib/OpenStudioAPI.hpp | 2 +- src/openstudio_lib/OtherEquipmentInspectorView.cpp | 2 +- src/openstudio_lib/OtherEquipmentInspectorView.hpp | 2 +- src/openstudio_lib/PeopleInspectorView.cpp | 2 +- src/openstudio_lib/PeopleInspectorView.hpp | 2 +- src/openstudio_lib/PlanarSurfaceWidget.cpp | 2 +- src/openstudio_lib/PlanarSurfaceWidget.hpp | 2 +- src/openstudio_lib/RadianceDialog.cpp | 2 +- src/openstudio_lib/RadianceDialog.hpp | 2 +- src/openstudio_lib/RefrigerationController.cpp | 2 +- src/openstudio_lib/RefrigerationController.hpp | 2 +- src/openstudio_lib/RefrigerationGraphicsItems.cpp | 2 +- src/openstudio_lib/RefrigerationGraphicsItems.hpp | 2 +- src/openstudio_lib/RefrigerationGridController.cpp | 2 +- src/openstudio_lib/RefrigerationGridController.hpp | 2 +- src/openstudio_lib/RefrigerationGridView.cpp | 2 +- src/openstudio_lib/RefrigerationGridView.hpp | 2 +- src/openstudio_lib/RefrigerationScene.cpp | 2 +- src/openstudio_lib/RefrigerationScene.hpp | 2 +- src/openstudio_lib/RenderingColorWidget.cpp | 2 +- src/openstudio_lib/RenderingColorWidget.hpp | 2 +- src/openstudio_lib/ResultsTabController.cpp | 2 +- src/openstudio_lib/ResultsTabController.hpp | 2 +- src/openstudio_lib/ResultsTabView.cpp | 2 +- src/openstudio_lib/ResultsTabView.hpp | 2 +- src/openstudio_lib/RunTabController.cpp | 2 +- src/openstudio_lib/RunTabController.hpp | 2 +- src/openstudio_lib/RunTabView.cpp | 2 +- src/openstudio_lib/RunTabView.hpp | 2 +- src/openstudio_lib/SOConstants.hpp | 2 +- src/openstudio_lib/ScheduleDayView.cpp | 2 +- src/openstudio_lib/ScheduleDayView.hpp | 2 +- src/openstudio_lib/ScheduleDialog.cpp | 2 +- src/openstudio_lib/ScheduleDialog.hpp | 2 +- src/openstudio_lib/ScheduleSetInspectorView.cpp | 2 +- src/openstudio_lib/ScheduleSetInspectorView.hpp | 2 +- src/openstudio_lib/ScheduleSetsController.cpp | 2 +- src/openstudio_lib/ScheduleSetsController.hpp | 2 +- src/openstudio_lib/ScheduleSetsView.cpp | 2 +- src/openstudio_lib/ScheduleSetsView.hpp | 2 +- src/openstudio_lib/SchedulesTabController.cpp | 2 +- src/openstudio_lib/SchedulesTabController.hpp | 2 +- src/openstudio_lib/SchedulesTabView.cpp | 2 +- src/openstudio_lib/SchedulesTabView.hpp | 2 +- src/openstudio_lib/SchedulesView.cpp | 2 +- src/openstudio_lib/SchedulesView.hpp | 2 +- src/openstudio_lib/ScriptFolderListView.cpp | 2 +- src/openstudio_lib/ScriptFolderListView.hpp | 2 +- src/openstudio_lib/ScriptItem.cpp | 2 +- src/openstudio_lib/ScriptItem.hpp | 2 +- src/openstudio_lib/ScriptsTabController.cpp | 2 +- src/openstudio_lib/ScriptsTabController.hpp | 2 +- src/openstudio_lib/ScriptsTabView.cpp | 2 +- src/openstudio_lib/ScriptsTabView.hpp | 2 +- src/openstudio_lib/ServiceWaterGridItems.cpp | 2 +- src/openstudio_lib/ServiceWaterGridItems.hpp | 2 +- src/openstudio_lib/ServiceWaterScene.cpp | 2 +- src/openstudio_lib/ServiceWaterScene.hpp | 2 +- src/openstudio_lib/SimSettingsTabController.cpp | 2 +- src/openstudio_lib/SimSettingsTabController.hpp | 2 +- src/openstudio_lib/SimSettingsTabView.cpp | 2 +- src/openstudio_lib/SimSettingsTabView.hpp | 2 +- src/openstudio_lib/SimSettingsView.cpp | 2 +- src/openstudio_lib/SimSettingsView.hpp | 2 +- src/openstudio_lib/SpaceLoadInstancesWidget.cpp | 2 +- src/openstudio_lib/SpaceLoadInstancesWidget.hpp | 2 +- src/openstudio_lib/SpaceTypeInspectorView.cpp | 2 +- src/openstudio_lib/SpaceTypeInspectorView.hpp | 2 +- src/openstudio_lib/SpaceTypesController.cpp | 2 +- src/openstudio_lib/SpaceTypesController.hpp | 2 +- src/openstudio_lib/SpaceTypesGridView.cpp | 2 +- src/openstudio_lib/SpaceTypesGridView.hpp | 2 +- src/openstudio_lib/SpaceTypesTabController.cpp | 2 +- src/openstudio_lib/SpaceTypesTabController.hpp | 2 +- src/openstudio_lib/SpaceTypesTabView.cpp | 2 +- src/openstudio_lib/SpaceTypesTabView.hpp | 2 +- src/openstudio_lib/SpaceTypesView.cpp | 2 +- src/openstudio_lib/SpaceTypesView.hpp | 2 +- src/openstudio_lib/SpacesDaylightingGridView.cpp | 2 +- src/openstudio_lib/SpacesDaylightingGridView.hpp | 2 +- src/openstudio_lib/SpacesInteriorPartitionsGridView.cpp | 2 +- src/openstudio_lib/SpacesInteriorPartitionsGridView.hpp | 2 +- src/openstudio_lib/SpacesLoadsGridView.cpp | 2 +- src/openstudio_lib/SpacesLoadsGridView.hpp | 2 +- src/openstudio_lib/SpacesShadingGridView.cpp | 2 +- src/openstudio_lib/SpacesShadingGridView.hpp | 2 +- src/openstudio_lib/SpacesSpacesGridView.cpp | 2 +- src/openstudio_lib/SpacesSpacesGridView.hpp | 2 +- src/openstudio_lib/SpacesSubsurfacesGridView.cpp | 2 +- src/openstudio_lib/SpacesSubsurfacesGridView.hpp | 2 +- src/openstudio_lib/SpacesSubtabGridView.cpp | 2 +- src/openstudio_lib/SpacesSubtabGridView.hpp | 2 +- src/openstudio_lib/SpacesSurfacesGridView.cpp | 2 +- src/openstudio_lib/SpacesSurfacesGridView.hpp | 2 +- src/openstudio_lib/SpacesTabController.cpp | 2 +- src/openstudio_lib/SpacesTabController.hpp | 2 +- src/openstudio_lib/SpacesTabView.cpp | 2 +- src/openstudio_lib/SpacesTabView.hpp | 2 +- src/openstudio_lib/StandardOpaqueMaterialInspectorView.cpp | 2 +- src/openstudio_lib/StandardOpaqueMaterialInspectorView.hpp | 2 +- src/openstudio_lib/StandardsInformationConstructionWidget.cpp | 2 +- src/openstudio_lib/StandardsInformationConstructionWidget.hpp | 2 +- src/openstudio_lib/StandardsInformationMaterialWidget.cpp | 2 +- src/openstudio_lib/StandardsInformationMaterialWidget.hpp | 2 +- src/openstudio_lib/SteamEquipmentInspectorView.cpp | 2 +- src/openstudio_lib/SteamEquipmentInspectorView.hpp | 2 +- src/openstudio_lib/SubTabController.cpp | 2 +- src/openstudio_lib/SubTabController.hpp | 2 +- src/openstudio_lib/SubTabView.cpp | 2 +- src/openstudio_lib/SubTabView.hpp | 2 +- src/openstudio_lib/SummaryTabController.cpp | 2 +- src/openstudio_lib/SummaryTabController.hpp | 2 +- src/openstudio_lib/SummaryTabView.cpp | 2 +- src/openstudio_lib/SummaryTabView.hpp | 2 +- src/openstudio_lib/ThermalZonesController.cpp | 2 +- src/openstudio_lib/ThermalZonesController.hpp | 2 +- src/openstudio_lib/ThermalZonesGridView.cpp | 2 +- src/openstudio_lib/ThermalZonesGridView.hpp | 2 +- src/openstudio_lib/ThermalZonesTabController.cpp | 2 +- src/openstudio_lib/ThermalZonesTabController.hpp | 2 +- src/openstudio_lib/ThermalZonesTabView.cpp | 2 +- src/openstudio_lib/ThermalZonesTabView.hpp | 2 +- src/openstudio_lib/ThermalZonesView.cpp | 2 +- src/openstudio_lib/ThermalZonesView.hpp | 2 +- src/openstudio_lib/UtilityBillAllFuelTypesListView.cpp | 2 +- src/openstudio_lib/UtilityBillAllFuelTypesListView.hpp | 2 +- src/openstudio_lib/UtilityBillFuelTypeItem.cpp | 2 +- src/openstudio_lib/UtilityBillFuelTypeItem.hpp | 2 +- src/openstudio_lib/UtilityBillFuelTypeListView.cpp | 2 +- src/openstudio_lib/UtilityBillFuelTypeListView.hpp | 2 +- src/openstudio_lib/UtilityBillsController.cpp | 2 +- src/openstudio_lib/UtilityBillsController.hpp | 2 +- src/openstudio_lib/UtilityBillsView.cpp | 2 +- src/openstudio_lib/UtilityBillsView.hpp | 2 +- src/openstudio_lib/VRFController.cpp | 2 +- src/openstudio_lib/VRFController.hpp | 2 +- src/openstudio_lib/VRFGraphicsItems.cpp | 2 +- src/openstudio_lib/VRFGraphicsItems.hpp | 2 +- src/openstudio_lib/VariablesTabController.cpp | 2 +- src/openstudio_lib/VariablesTabController.hpp | 2 +- src/openstudio_lib/VariablesTabView.cpp | 2 +- src/openstudio_lib/VariablesTabView.hpp | 2 +- src/openstudio_lib/VerticalTabWidget.cpp | 2 +- src/openstudio_lib/VerticalTabWidget.hpp | 2 +- src/openstudio_lib/WaterUseEquipmentInspectorView.cpp | 2 +- src/openstudio_lib/WaterUseEquipmentInspectorView.hpp | 2 +- src/openstudio_lib/WindowMaterialBlindInspectorView.cpp | 2 +- src/openstudio_lib/WindowMaterialBlindInspectorView.hpp | 2 +- .../WindowMaterialDaylightRedirectionDeviceInspectorView.cpp | 2 +- .../WindowMaterialDaylightRedirectionDeviceInspectorView.hpp | 2 +- src/openstudio_lib/WindowMaterialGasInspectorView.cpp | 2 +- src/openstudio_lib/WindowMaterialGasInspectorView.hpp | 2 +- src/openstudio_lib/WindowMaterialGasMixtureInspectorView.cpp | 2 +- src/openstudio_lib/WindowMaterialGasMixtureInspectorView.hpp | 2 +- .../WindowMaterialGlazingGroupThermochromicInspectorView.cpp | 2 +- .../WindowMaterialGlazingGroupThermochromicInspectorView.hpp | 2 +- src/openstudio_lib/WindowMaterialGlazingInspectorView.cpp | 2 +- src/openstudio_lib/WindowMaterialGlazingInspectorView.hpp | 2 +- ...owMaterialGlazingRefractionExtinctionMethodInspectorView.cpp | 2 +- ...owMaterialGlazingRefractionExtinctionMethodInspectorView.hpp | 2 +- src/openstudio_lib/WindowMaterialScreenInspectorView.cpp | 2 +- src/openstudio_lib/WindowMaterialScreenInspectorView.hpp | 2 +- src/openstudio_lib/WindowMaterialShadeInspectorView.cpp | 2 +- src/openstudio_lib/WindowMaterialShadeInspectorView.hpp | 2 +- .../WindowMaterialSimpleGlazingSystemInspectorView.cpp | 2 +- .../WindowMaterialSimpleGlazingSystemInspectorView.hpp | 2 +- src/openstudio_lib/YearSettingsWidget.cpp | 2 +- src/openstudio_lib/YearSettingsWidget.hpp | 2 +- src/openstudio_lib/ZoneChooserView.cpp | 2 +- src/openstudio_lib/ZoneChooserView.hpp | 2 +- src/openstudio_lib/test/IconLibrary_GTest.cpp | 2 +- src/openstudio_lib/test/OpenStudioLibFixture.cpp | 2 +- src/openstudio_lib/test/OpenStudioLibFixture.hpp | 2 +- src/shared_gui_components/BCLMeasureDialog.cpp | 2 +- src/shared_gui_components/BCLMeasureDialog.hpp | 2 +- src/shared_gui_components/BaseApp.hpp | 2 +- src/shared_gui_components/BuildingComponentDialog.cpp | 2 +- src/shared_gui_components/BuildingComponentDialog.hpp | 2 +- .../BuildingComponentDialogCentralWidget.cpp | 2 +- .../BuildingComponentDialogCentralWidget.hpp | 2 +- src/shared_gui_components/BusyWidget.cpp | 2 +- src/shared_gui_components/BusyWidget.hpp | 2 +- src/shared_gui_components/Buttons.cpp | 2 +- src/shared_gui_components/Buttons.hpp | 2 +- src/shared_gui_components/CollapsibleComponent.cpp | 2 +- src/shared_gui_components/CollapsibleComponent.hpp | 2 +- src/shared_gui_components/CollapsibleComponentHeader.cpp | 2 +- src/shared_gui_components/CollapsibleComponentHeader.hpp | 2 +- src/shared_gui_components/CollapsibleComponentList.cpp | 2 +- src/shared_gui_components/CollapsibleComponentList.hpp | 2 +- src/shared_gui_components/Component.cpp | 2 +- src/shared_gui_components/Component.hpp | 2 +- src/shared_gui_components/ComponentList.cpp | 2 +- src/shared_gui_components/ComponentList.hpp | 2 +- src/shared_gui_components/EditController.cpp | 2 +- src/shared_gui_components/EditController.hpp | 2 +- src/shared_gui_components/EditView.cpp | 2 +- src/shared_gui_components/EditView.hpp | 2 +- src/shared_gui_components/FieldMethodTypedefs.hpp | 2 +- src/shared_gui_components/GraphicsItems.cpp | 2 +- src/shared_gui_components/GraphicsItems.hpp | 2 +- src/shared_gui_components/HeaderViews.cpp | 2 +- src/shared_gui_components/HeaderViews.hpp | 2 +- src/shared_gui_components/LocalLibrary.hpp | 2 +- src/shared_gui_components/LocalLibraryController.cpp | 2 +- src/shared_gui_components/LocalLibraryController.hpp | 2 +- src/shared_gui_components/LocalLibraryView.cpp | 2 +- src/shared_gui_components/LocalLibraryView.hpp | 2 +- src/shared_gui_components/LostCloudConnectionDialog.cpp | 2 +- src/shared_gui_components/LostCloudConnectionDialog.hpp | 2 +- src/shared_gui_components/MeasureBadge.cpp | 2 +- src/shared_gui_components/MeasureBadge.hpp | 2 +- src/shared_gui_components/MeasureDragData.cpp | 2 +- src/shared_gui_components/MeasureDragData.hpp | 2 +- src/shared_gui_components/MeasureManager.cpp | 2 +- src/shared_gui_components/MeasureManager.hpp | 2 +- src/shared_gui_components/NetworkProxyDialog.cpp | 2 +- src/shared_gui_components/NetworkProxyDialog.hpp | 2 +- src/shared_gui_components/OSCheckBox.cpp | 2 +- src/shared_gui_components/OSCheckBox.hpp | 2 +- src/shared_gui_components/OSCollapsibleView.cpp | 2 +- src/shared_gui_components/OSCollapsibleView.hpp | 2 +- src/shared_gui_components/OSComboBox.cpp | 2 +- src/shared_gui_components/OSComboBox.hpp | 2 +- src/shared_gui_components/OSConcepts.hpp | 2 +- src/shared_gui_components/OSDialog.cpp | 2 +- src/shared_gui_components/OSDialog.hpp | 2 +- src/shared_gui_components/OSDoubleEdit.cpp | 2 +- src/shared_gui_components/OSDoubleEdit.hpp | 2 +- src/shared_gui_components/OSDragableView.cpp | 2 +- src/shared_gui_components/OSDragableView.hpp | 2 +- src/shared_gui_components/OSGridController.cpp | 2 +- src/shared_gui_components/OSGridController.hpp | 2 +- src/shared_gui_components/OSGridView.cpp | 2 +- src/shared_gui_components/OSGridView.hpp | 2 +- src/shared_gui_components/OSIntegerEdit.cpp | 2 +- src/shared_gui_components/OSIntegerEdit.hpp | 2 +- src/shared_gui_components/OSLineEdit.cpp | 2 +- src/shared_gui_components/OSLineEdit.hpp | 2 +- src/shared_gui_components/OSListController.cpp | 2 +- src/shared_gui_components/OSListController.hpp | 2 +- src/shared_gui_components/OSListView.cpp | 2 +- src/shared_gui_components/OSListView.hpp | 2 +- src/shared_gui_components/OSLoadNamePixmapLineEdit.cpp | 2 +- src/shared_gui_components/OSLoadNamePixmapLineEdit.hpp | 2 +- src/shared_gui_components/OSQObjectController.cpp | 2 +- src/shared_gui_components/OSQObjectController.hpp | 2 +- src/shared_gui_components/OSQuantityEdit.cpp | 2 +- src/shared_gui_components/OSQuantityEdit.hpp | 2 +- src/shared_gui_components/OSSwitch.cpp | 2 +- src/shared_gui_components/OSSwitch.hpp | 2 +- src/shared_gui_components/OSUnsignedEdit.cpp | 2 +- src/shared_gui_components/OSUnsignedEdit.hpp | 2 +- src/shared_gui_components/OSViewSwitcher.cpp | 2 +- src/shared_gui_components/OSViewSwitcher.hpp | 2 +- src/shared_gui_components/PageNavigator.cpp | 2 +- src/shared_gui_components/PageNavigator.hpp | 2 +- src/shared_gui_components/ProcessEventsProgressBar.cpp | 2 +- src/shared_gui_components/ProcessEventsProgressBar.hpp | 2 +- src/shared_gui_components/SyncMeasuresDialog.cpp | 2 +- src/shared_gui_components/SyncMeasuresDialog.hpp | 2 +- src/shared_gui_components/SyncMeasuresDialogCentralWidget.cpp | 2 +- src/shared_gui_components/SyncMeasuresDialogCentralWidget.hpp | 2 +- src/shared_gui_components/TIDItemModel.cpp | 2 +- src/shared_gui_components/TIDItemModel.hpp | 2 +- src/shared_gui_components/TextEditDialog.cpp | 2 +- src/shared_gui_components/TextEditDialog.hpp | 2 +- src/shared_gui_components/WaitDialog.cpp | 2 +- src/shared_gui_components/WaitDialog.hpp | 2 +- src/shared_gui_components/WorkflowController.cpp | 2 +- src/shared_gui_components/WorkflowController.hpp | 2 +- src/shared_gui_components/WorkflowTools.cpp | 2 +- src/shared_gui_components/WorkflowTools.hpp | 2 +- src/shared_gui_components/WorkflowView.cpp | 2 +- src/shared_gui_components/WorkflowView.hpp | 2 +- src/utilities/OpenStudioApplicationPathHelpers.cxx.in | 2 +- src/utilities/OpenStudioApplicationPathHelpers.hpp | 2 +- src/utilities/OpenStudioApplicationUtilitiesAPI.hpp | 2 +- src/utilities/test/OpenStudioApplicationPathHelpers_GTest.cpp | 2 +- 545 files changed, 545 insertions(+), 545 deletions(-) diff --git a/ruby/RubyAPI.hpp b/ruby/RubyAPI.hpp index fd557fad4..af20a742f 100644 --- a/ruby/RubyAPI.hpp +++ b/ruby/RubyAPI.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/ruby/openstudio_modeleditor.rb b/ruby/openstudio_modeleditor.rb index 8021f1fb8..5d226e52b 100644 --- a/ruby/openstudio_modeleditor.rb +++ b/ruby/openstudio_modeleditor.rb @@ -1,5 +1,5 @@ ######################################################################################################################## -# OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +# OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, are permitted provided that the # following conditions are met: diff --git a/ruby/openstudio_modeleditor_rb.cpp b/ruby/openstudio_modeleditor_rb.cpp index de5517705..fccf6e2b5 100644 --- a/ruby/openstudio_modeleditor_rb.cpp +++ b/ruby/openstudio_modeleditor_rb.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/ruby/test/PathWatcher_Test.rb b/ruby/test/PathWatcher_Test.rb index 0015c0ba7..97483906f 100644 --- a/ruby/test/PathWatcher_Test.rb +++ b/ruby/test/PathWatcher_Test.rb @@ -1,5 +1,5 @@ ######################################################################################################################## -# OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +# OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, are permitted provided that the # following conditions are met: diff --git a/ruby/test/WorkspaceWatcher_Test.rb b/ruby/test/WorkspaceWatcher_Test.rb index b98ed813f..5ec7ceb67 100644 --- a/ruby/test/WorkspaceWatcher_Test.rb +++ b/ruby/test/WorkspaceWatcher_Test.rb @@ -1,5 +1,5 @@ ######################################################################################################################## -# OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +# OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, are permitted provided that the # following conditions are met: diff --git a/src/bimserver/BIMserverAPI.hpp b/src/bimserver/BIMserverAPI.hpp index 5e5056b2f..0f4aa7e78 100644 --- a/src/bimserver/BIMserverAPI.hpp +++ b/src/bimserver/BIMserverAPI.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/bimserver/BIMserverConnection.cpp b/src/bimserver/BIMserverConnection.cpp index d8a28aa09..0c57c6218 100644 --- a/src/bimserver/BIMserverConnection.cpp +++ b/src/bimserver/BIMserverConnection.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/bimserver/BIMserverConnection.hpp b/src/bimserver/BIMserverConnection.hpp index d39d15f0e..3fc43b168 100644 --- a/src/bimserver/BIMserverConnection.hpp +++ b/src/bimserver/BIMserverConnection.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/bimserver/ProjectImporter.cpp b/src/bimserver/ProjectImporter.cpp index eafe29704..b58cd1341 100644 --- a/src/bimserver/ProjectImporter.cpp +++ b/src/bimserver/ProjectImporter.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/bimserver/ProjectImporter.hpp b/src/bimserver/ProjectImporter.hpp index 57ba4b36f..f4baa6605 100644 --- a/src/bimserver/ProjectImporter.hpp +++ b/src/bimserver/ProjectImporter.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/bimserver/Test/BIMserverFixture.cpp b/src/bimserver/Test/BIMserverFixture.cpp index f06000566..45f5bdfea 100644 --- a/src/bimserver/Test/BIMserverFixture.cpp +++ b/src/bimserver/Test/BIMserverFixture.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/bimserver/Test/BIMserverFixture.hpp b/src/bimserver/Test/BIMserverFixture.hpp index 804c62e42..24de46c2b 100644 --- a/src/bimserver/Test/BIMserverFixture.hpp +++ b/src/bimserver/Test/BIMserverFixture.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/AccessPolicyStore.cpp b/src/model_editor/AccessPolicyStore.cpp index 5dec72be7..b38544674 100644 --- a/src/model_editor/AccessPolicyStore.cpp +++ b/src/model_editor/AccessPolicyStore.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/AccessPolicyStore.hpp b/src/model_editor/AccessPolicyStore.hpp index 29c9afcc6..ef52ceeeb 100644 --- a/src/model_editor/AccessPolicyStore.hpp +++ b/src/model_editor/AccessPolicyStore.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/Application.cpp b/src/model_editor/Application.cpp index 3b85c8e01..d63903a40 100644 --- a/src/model_editor/Application.cpp +++ b/src/model_editor/Application.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/Application.hpp b/src/model_editor/Application.hpp index 6dd9dc068..ad52ffcb6 100644 --- a/src/model_editor/Application.hpp +++ b/src/model_editor/Application.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/BridgeClasses.cpp b/src/model_editor/BridgeClasses.cpp index 326d2dcc5..078dda91d 100644 --- a/src/model_editor/BridgeClasses.cpp +++ b/src/model_editor/BridgeClasses.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/BridgeClasses.hpp b/src/model_editor/BridgeClasses.hpp index b44bdbff2..63838e488 100644 --- a/src/model_editor/BridgeClasses.hpp +++ b/src/model_editor/BridgeClasses.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/GithubReleases.cpp b/src/model_editor/GithubReleases.cpp index c02b7e36f..86d7a0f3e 100644 --- a/src/model_editor/GithubReleases.cpp +++ b/src/model_editor/GithubReleases.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/GithubReleases.hpp b/src/model_editor/GithubReleases.hpp index 038288008..00ec83e5d 100644 --- a/src/model_editor/GithubReleases.hpp +++ b/src/model_editor/GithubReleases.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/IGLineEdit.cpp b/src/model_editor/IGLineEdit.cpp index 1969b151a..557837c1c 100644 --- a/src/model_editor/IGLineEdit.cpp +++ b/src/model_editor/IGLineEdit.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/IGLineEdit.hpp b/src/model_editor/IGLineEdit.hpp index 02f10e591..e209a9436 100644 --- a/src/model_editor/IGLineEdit.hpp +++ b/src/model_editor/IGLineEdit.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/IGPrecisionDialog.cpp b/src/model_editor/IGPrecisionDialog.cpp index fac5b3a76..def3ac285 100644 --- a/src/model_editor/IGPrecisionDialog.cpp +++ b/src/model_editor/IGPrecisionDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/IGPrecisionDialog.hpp b/src/model_editor/IGPrecisionDialog.hpp index 69979a297..7f28b8c71 100644 --- a/src/model_editor/IGPrecisionDialog.hpp +++ b/src/model_editor/IGPrecisionDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/IGSpinBoxes.cpp b/src/model_editor/IGSpinBoxes.cpp index 7a67e1baa..396e859ba 100644 --- a/src/model_editor/IGSpinBoxes.cpp +++ b/src/model_editor/IGSpinBoxes.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/IGSpinBoxes.hpp b/src/model_editor/IGSpinBoxes.hpp index 8541dfc90..e90dc01c4 100644 --- a/src/model_editor/IGSpinBoxes.hpp +++ b/src/model_editor/IGSpinBoxes.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/InspectorDialog.cpp b/src/model_editor/InspectorDialog.cpp index 212260f68..4049d81ef 100644 --- a/src/model_editor/InspectorDialog.cpp +++ b/src/model_editor/InspectorDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/InspectorDialog.hpp b/src/model_editor/InspectorDialog.hpp index d9b19b95a..5306e6f4d 100644 --- a/src/model_editor/InspectorDialog.hpp +++ b/src/model_editor/InspectorDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/InspectorGadget.cpp b/src/model_editor/InspectorGadget.cpp index 4cac6fb7a..777602335 100644 --- a/src/model_editor/InspectorGadget.cpp +++ b/src/model_editor/InspectorGadget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/InspectorGadget.hpp b/src/model_editor/InspectorGadget.hpp index 12d29fc39..acd2d1fab 100644 --- a/src/model_editor/InspectorGadget.hpp +++ b/src/model_editor/InspectorGadget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/ListWidget.cpp b/src/model_editor/ListWidget.cpp index 34fe38cf1..84a2ea8cc 100644 --- a/src/model_editor/ListWidget.cpp +++ b/src/model_editor/ListWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/ListWidget.hpp b/src/model_editor/ListWidget.hpp index ef09043e3..afac33596 100644 --- a/src/model_editor/ListWidget.hpp +++ b/src/model_editor/ListWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/ModalDialogs.cpp b/src/model_editor/ModalDialogs.cpp index f3e9b1c52..c0a48c638 100644 --- a/src/model_editor/ModalDialogs.cpp +++ b/src/model_editor/ModalDialogs.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/ModalDialogs.hpp b/src/model_editor/ModalDialogs.hpp index af1e8c71a..e303d3f98 100644 --- a/src/model_editor/ModalDialogs.hpp +++ b/src/model_editor/ModalDialogs.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/ModelEditorAPI.hpp b/src/model_editor/ModelEditorAPI.hpp index c56027f5e..3924b246b 100644 --- a/src/model_editor/ModelEditorAPI.hpp +++ b/src/model_editor/ModelEditorAPI.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/OSProgressBar.cpp b/src/model_editor/OSProgressBar.cpp index bd3148b5a..684144085 100644 --- a/src/model_editor/OSProgressBar.cpp +++ b/src/model_editor/OSProgressBar.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/OSProgressBar.hpp b/src/model_editor/OSProgressBar.hpp index 628562590..38283b598 100644 --- a/src/model_editor/OSProgressBar.hpp +++ b/src/model_editor/OSProgressBar.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/PathWatcher.cpp b/src/model_editor/PathWatcher.cpp index 4d515fbac..6cc9b5b81 100644 --- a/src/model_editor/PathWatcher.cpp +++ b/src/model_editor/PathWatcher.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/PathWatcher.hpp b/src/model_editor/PathWatcher.hpp index ffacc0574..76c254fab 100644 --- a/src/model_editor/PathWatcher.hpp +++ b/src/model_editor/PathWatcher.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/QMetaTypes.cpp b/src/model_editor/QMetaTypes.cpp index 2502ae7ba..be1c1127c 100644 --- a/src/model_editor/QMetaTypes.cpp +++ b/src/model_editor/QMetaTypes.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/QMetaTypes.hpp b/src/model_editor/QMetaTypes.hpp index 955c251a1..1ab7501bd 100644 --- a/src/model_editor/QMetaTypes.hpp +++ b/src/model_editor/QMetaTypes.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/TableView.cpp b/src/model_editor/TableView.cpp index 1682bd2a3..2e5080a9c 100644 --- a/src/model_editor/TableView.cpp +++ b/src/model_editor/TableView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/TableView.hpp b/src/model_editor/TableView.hpp index ddc3ed0f5..eb84ccb12 100644 --- a/src/model_editor/TableView.hpp +++ b/src/model_editor/TableView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/TableWidget.cpp b/src/model_editor/TableWidget.cpp index b18583291..2d3e321a9 100644 --- a/src/model_editor/TableWidget.cpp +++ b/src/model_editor/TableWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/TableWidget.hpp b/src/model_editor/TableWidget.hpp index 33314f0c2..9be1f48db 100644 --- a/src/model_editor/TableWidget.hpp +++ b/src/model_editor/TableWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/TestButton.cpp b/src/model_editor/TestButton.cpp index 0523a96a5..646e96538 100644 --- a/src/model_editor/TestButton.cpp +++ b/src/model_editor/TestButton.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/TestButton.hpp b/src/model_editor/TestButton.hpp index 73ec72960..f9762574e 100644 --- a/src/model_editor/TestButton.hpp +++ b/src/model_editor/TestButton.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/TreeView.cpp b/src/model_editor/TreeView.cpp index fb69928da..eea73a14f 100644 --- a/src/model_editor/TreeView.cpp +++ b/src/model_editor/TreeView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/TreeView.hpp b/src/model_editor/TreeView.hpp index 260c70e86..36b7a90f0 100644 --- a/src/model_editor/TreeView.hpp +++ b/src/model_editor/TreeView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/UserSettings.cpp b/src/model_editor/UserSettings.cpp index 60cf04c9f..b9596c372 100644 --- a/src/model_editor/UserSettings.cpp +++ b/src/model_editor/UserSettings.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/UserSettings.hpp b/src/model_editor/UserSettings.hpp index fd3c1e441..f8e8ce602 100644 --- a/src/model_editor/UserSettings.hpp +++ b/src/model_editor/UserSettings.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/Utilities.cpp b/src/model_editor/Utilities.cpp index e1cd32dd0..83956970e 100644 --- a/src/model_editor/Utilities.cpp +++ b/src/model_editor/Utilities.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/Utilities.hpp b/src/model_editor/Utilities.hpp index 962e86501..36a8812ca 100644 --- a/src/model_editor/Utilities.hpp +++ b/src/model_editor/Utilities.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/test/GithubReleases_GTest.cpp b/src/model_editor/test/GithubReleases_GTest.cpp index 7ef30a1a5..f31730e76 100644 --- a/src/model_editor/test/GithubReleases_GTest.cpp +++ b/src/model_editor/test/GithubReleases_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/test/InspectorDialog_GTest.cpp b/src/model_editor/test/InspectorDialog_GTest.cpp index d2c8537e0..36cc8dc6c 100644 --- a/src/model_editor/test/InspectorDialog_GTest.cpp +++ b/src/model_editor/test/InspectorDialog_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/test/ModalDialogs_GTest.cpp b/src/model_editor/test/ModalDialogs_GTest.cpp index 790ec2808..a18881a71 100644 --- a/src/model_editor/test/ModalDialogs_GTest.cpp +++ b/src/model_editor/test/ModalDialogs_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/test/ModelEditorFixture.cpp b/src/model_editor/test/ModelEditorFixture.cpp index 22dbd4abf..8cfee43d0 100644 --- a/src/model_editor/test/ModelEditorFixture.cpp +++ b/src/model_editor/test/ModelEditorFixture.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/test/ModelEditorFixture.hpp b/src/model_editor/test/ModelEditorFixture.hpp index 20009ba73..172d89df0 100644 --- a/src/model_editor/test/ModelEditorFixture.hpp +++ b/src/model_editor/test/ModelEditorFixture.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/test/PathWatcher_GTest.cpp b/src/model_editor/test/PathWatcher_GTest.cpp index c97528af3..e0828e12d 100644 --- a/src/model_editor/test/PathWatcher_GTest.cpp +++ b/src/model_editor/test/PathWatcher_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/test/QMetaTypes_GTest.cpp b/src/model_editor/test/QMetaTypes_GTest.cpp index a6f08404f..5f80d7c82 100644 --- a/src/model_editor/test/QMetaTypes_GTest.cpp +++ b/src/model_editor/test/QMetaTypes_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/model_editor/test/Utilities_GTest.cpp b/src/model_editor/test/Utilities_GTest.cpp index a79ab7616..0dfaa68c7 100644 --- a/src/model_editor/test/Utilities_GTest.cpp +++ b/src/model_editor/test/Utilities_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/ExternalToolsDialog.cpp b/src/openstudio_app/ExternalToolsDialog.cpp index 63ece3280..f786d2c41 100644 --- a/src/openstudio_app/ExternalToolsDialog.cpp +++ b/src/openstudio_app/ExternalToolsDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/ExternalToolsDialog.hpp b/src/openstudio_app/ExternalToolsDialog.hpp index 966bc67bc..90f3bb79a 100644 --- a/src/openstudio_app/ExternalToolsDialog.hpp +++ b/src/openstudio_app/ExternalToolsDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/LibraryDialog.cpp b/src/openstudio_app/LibraryDialog.cpp index ba50115ff..b234b6787 100644 --- a/src/openstudio_app/LibraryDialog.cpp +++ b/src/openstudio_app/LibraryDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/LibraryDialog.hpp b/src/openstudio_app/LibraryDialog.hpp index 95abcad4d..638909b71 100644 --- a/src/openstudio_app/LibraryDialog.hpp +++ b/src/openstudio_app/LibraryDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/OpenStudioApp.cpp b/src/openstudio_app/OpenStudioApp.cpp index 2132ebc7b..253da86ec 100644 --- a/src/openstudio_app/OpenStudioApp.cpp +++ b/src/openstudio_app/OpenStudioApp.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/OpenStudioApp.hpp b/src/openstudio_app/OpenStudioApp.hpp index 9ca328ea0..e71a94f44 100644 --- a/src/openstudio_app/OpenStudioApp.hpp +++ b/src/openstudio_app/OpenStudioApp.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/StartupMenu.cpp b/src/openstudio_app/StartupMenu.cpp index 51d0abaaf..a2e294060 100644 --- a/src/openstudio_app/StartupMenu.cpp +++ b/src/openstudio_app/StartupMenu.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/StartupMenu.hpp b/src/openstudio_app/StartupMenu.hpp index badbc7913..8899871c5 100644 --- a/src/openstudio_app/StartupMenu.hpp +++ b/src/openstudio_app/StartupMenu.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/StartupView.cpp b/src/openstudio_app/StartupView.cpp index a04e16f0a..837997d99 100644 --- a/src/openstudio_app/StartupView.cpp +++ b/src/openstudio_app/StartupView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/StartupView.hpp b/src/openstudio_app/StartupView.hpp index c32d56c81..fe3691fc9 100644 --- a/src/openstudio_app/StartupView.hpp +++ b/src/openstudio_app/StartupView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/main.cpp b/src/openstudio_app/main.cpp index 543c42cb3..f69056cd6 100644 --- a/src/openstudio_app/main.cpp +++ b/src/openstudio_app/main.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/test/OpenStudioAppFixture.cpp b/src/openstudio_app/test/OpenStudioAppFixture.cpp index 757697ada..756af6d0d 100644 --- a/src/openstudio_app/test/OpenStudioAppFixture.cpp +++ b/src/openstudio_app/test/OpenStudioAppFixture.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/test/OpenStudioAppFixture.hpp b/src/openstudio_app/test/OpenStudioAppFixture.hpp index e50116895..b77dcf4c8 100644 --- a/src/openstudio_app/test/OpenStudioAppFixture.hpp +++ b/src/openstudio_app/test/OpenStudioAppFixture.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/test/Resources_GTest.cpp b/src/openstudio_app/test/Resources_GTest.cpp index ed6655de8..b476f20b6 100644 --- a/src/openstudio_app/test/Resources_GTest.cpp +++ b/src/openstudio_app/test/Resources_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_app/test/Units_GTest.cpp b/src/openstudio_app/test/Units_GTest.cpp index 88602e2d1..d5b7fc7d1 100644 --- a/src/openstudio_app/test/Units_GTest.cpp +++ b/src/openstudio_app/test/Units_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ApplyMeasureNowDialog.cpp b/src/openstudio_lib/ApplyMeasureNowDialog.cpp index 2a8a7f053..df8dd1b45 100644 --- a/src/openstudio_lib/ApplyMeasureNowDialog.cpp +++ b/src/openstudio_lib/ApplyMeasureNowDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ApplyMeasureNowDialog.hpp b/src/openstudio_lib/ApplyMeasureNowDialog.hpp index c3046fd53..a896243aa 100644 --- a/src/openstudio_lib/ApplyMeasureNowDialog.hpp +++ b/src/openstudio_lib/ApplyMeasureNowDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/BCLComponentItem.cpp b/src/openstudio_lib/BCLComponentItem.cpp index fec37b960..110b70eb5 100644 --- a/src/openstudio_lib/BCLComponentItem.cpp +++ b/src/openstudio_lib/BCLComponentItem.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/BCLComponentItem.hpp b/src/openstudio_lib/BCLComponentItem.hpp index 4ac235dcd..023818819 100644 --- a/src/openstudio_lib/BCLComponentItem.hpp +++ b/src/openstudio_lib/BCLComponentItem.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/BuildingInspectorView.cpp b/src/openstudio_lib/BuildingInspectorView.cpp index 9a6a15cc3..ef073fe53 100644 --- a/src/openstudio_lib/BuildingInspectorView.cpp +++ b/src/openstudio_lib/BuildingInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/BuildingInspectorView.hpp b/src/openstudio_lib/BuildingInspectorView.hpp index 1234d51ee..169c2b8ca 100644 --- a/src/openstudio_lib/BuildingInspectorView.hpp +++ b/src/openstudio_lib/BuildingInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/CollapsibleInspector.cpp b/src/openstudio_lib/CollapsibleInspector.cpp index caf9e2dc8..18ec77810 100644 --- a/src/openstudio_lib/CollapsibleInspector.cpp +++ b/src/openstudio_lib/CollapsibleInspector.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/CollapsibleInspector.hpp b/src/openstudio_lib/CollapsibleInspector.hpp index 14c630878..f7814c196 100644 --- a/src/openstudio_lib/CollapsibleInspector.hpp +++ b/src/openstudio_lib/CollapsibleInspector.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionAirBoundaryInspectorView.cpp b/src/openstudio_lib/ConstructionAirBoundaryInspectorView.cpp index a0721f61f..240070459 100644 --- a/src/openstudio_lib/ConstructionAirBoundaryInspectorView.cpp +++ b/src/openstudio_lib/ConstructionAirBoundaryInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionAirBoundaryInspectorView.hpp b/src/openstudio_lib/ConstructionAirBoundaryInspectorView.hpp index 4d09a0ec7..d4ca3c159 100644 --- a/src/openstudio_lib/ConstructionAirBoundaryInspectorView.hpp +++ b/src/openstudio_lib/ConstructionAirBoundaryInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.cpp b/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.cpp index 862f756fa..218ae4cfe 100644 --- a/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.cpp +++ b/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.hpp b/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.hpp index 9b1944311..cb86146d4 100644 --- a/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.hpp +++ b/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.cpp b/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.cpp index c4753f6f2..9782f72f8 100644 --- a/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.cpp +++ b/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.hpp b/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.hpp index f555316b6..4e841e3ee 100644 --- a/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.hpp +++ b/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionInspectorView.cpp b/src/openstudio_lib/ConstructionInspectorView.cpp index 9b64cbe04..d32e9dbf2 100644 --- a/src/openstudio_lib/ConstructionInspectorView.cpp +++ b/src/openstudio_lib/ConstructionInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionInspectorView.hpp b/src/openstudio_lib/ConstructionInspectorView.hpp index e09381c38..24d5cc7d6 100644 --- a/src/openstudio_lib/ConstructionInspectorView.hpp +++ b/src/openstudio_lib/ConstructionInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionInternalSourceInspectorView.cpp b/src/openstudio_lib/ConstructionInternalSourceInspectorView.cpp index b62e0945d..9be9fe551 100644 --- a/src/openstudio_lib/ConstructionInternalSourceInspectorView.cpp +++ b/src/openstudio_lib/ConstructionInternalSourceInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionInternalSourceInspectorView.hpp b/src/openstudio_lib/ConstructionInternalSourceInspectorView.hpp index 09bd8a747..191ca098d 100644 --- a/src/openstudio_lib/ConstructionInternalSourceInspectorView.hpp +++ b/src/openstudio_lib/ConstructionInternalSourceInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionObjectVectorController.cpp b/src/openstudio_lib/ConstructionObjectVectorController.cpp index e6e716d59..e05244ef8 100644 --- a/src/openstudio_lib/ConstructionObjectVectorController.cpp +++ b/src/openstudio_lib/ConstructionObjectVectorController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionObjectVectorController.hpp b/src/openstudio_lib/ConstructionObjectVectorController.hpp index 3c62b5dcb..59abec96d 100644 --- a/src/openstudio_lib/ConstructionObjectVectorController.hpp +++ b/src/openstudio_lib/ConstructionObjectVectorController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionWindowDataFileInspectorView.cpp b/src/openstudio_lib/ConstructionWindowDataFileInspectorView.cpp index c3f7f1004..e6a0dcd9a 100644 --- a/src/openstudio_lib/ConstructionWindowDataFileInspectorView.cpp +++ b/src/openstudio_lib/ConstructionWindowDataFileInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionWindowDataFileInspectorView.hpp b/src/openstudio_lib/ConstructionWindowDataFileInspectorView.hpp index 3e65f5fa9..86a2b4b49 100644 --- a/src/openstudio_lib/ConstructionWindowDataFileInspectorView.hpp +++ b/src/openstudio_lib/ConstructionWindowDataFileInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionsController.cpp b/src/openstudio_lib/ConstructionsController.cpp index 2d63e9401..bf6a503b2 100644 --- a/src/openstudio_lib/ConstructionsController.cpp +++ b/src/openstudio_lib/ConstructionsController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionsController.hpp b/src/openstudio_lib/ConstructionsController.hpp index 88f694fb0..9d65d1a36 100644 --- a/src/openstudio_lib/ConstructionsController.hpp +++ b/src/openstudio_lib/ConstructionsController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionsTabController.cpp b/src/openstudio_lib/ConstructionsTabController.cpp index fdb626081..75d98ccf6 100644 --- a/src/openstudio_lib/ConstructionsTabController.cpp +++ b/src/openstudio_lib/ConstructionsTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionsTabController.hpp b/src/openstudio_lib/ConstructionsTabController.hpp index 4280d974c..6db2ab8c2 100644 --- a/src/openstudio_lib/ConstructionsTabController.hpp +++ b/src/openstudio_lib/ConstructionsTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionsTabView.cpp b/src/openstudio_lib/ConstructionsTabView.cpp index 1403d4970..caf6e1f89 100644 --- a/src/openstudio_lib/ConstructionsTabView.cpp +++ b/src/openstudio_lib/ConstructionsTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionsTabView.hpp b/src/openstudio_lib/ConstructionsTabView.hpp index 57cef6607..b36fa692c 100644 --- a/src/openstudio_lib/ConstructionsTabView.hpp +++ b/src/openstudio_lib/ConstructionsTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionsView.cpp b/src/openstudio_lib/ConstructionsView.cpp index abf9fd320..0211549b8 100644 --- a/src/openstudio_lib/ConstructionsView.cpp +++ b/src/openstudio_lib/ConstructionsView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ConstructionsView.hpp b/src/openstudio_lib/ConstructionsView.hpp index ad6e90594..911622d9e 100644 --- a/src/openstudio_lib/ConstructionsView.hpp +++ b/src/openstudio_lib/ConstructionsView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/DefaultConstructionSetInspectorView.cpp b/src/openstudio_lib/DefaultConstructionSetInspectorView.cpp index c2167698f..9f0fb2032 100644 --- a/src/openstudio_lib/DefaultConstructionSetInspectorView.cpp +++ b/src/openstudio_lib/DefaultConstructionSetInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/DefaultConstructionSetInspectorView.hpp b/src/openstudio_lib/DefaultConstructionSetInspectorView.hpp index dc6d69316..0a986efb5 100644 --- a/src/openstudio_lib/DefaultConstructionSetInspectorView.hpp +++ b/src/openstudio_lib/DefaultConstructionSetInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/DefaultConstructionSetsController.cpp b/src/openstudio_lib/DefaultConstructionSetsController.cpp index 260b0604f..85bb12057 100644 --- a/src/openstudio_lib/DefaultConstructionSetsController.cpp +++ b/src/openstudio_lib/DefaultConstructionSetsController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/DefaultConstructionSetsController.hpp b/src/openstudio_lib/DefaultConstructionSetsController.hpp index eea084130..07b1c5bec 100644 --- a/src/openstudio_lib/DefaultConstructionSetsController.hpp +++ b/src/openstudio_lib/DefaultConstructionSetsController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/DefaultConstructionSetsView.cpp b/src/openstudio_lib/DefaultConstructionSetsView.cpp index f65c52f8e..2845e1bb3 100644 --- a/src/openstudio_lib/DefaultConstructionSetsView.cpp +++ b/src/openstudio_lib/DefaultConstructionSetsView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/DefaultConstructionSetsView.hpp b/src/openstudio_lib/DefaultConstructionSetsView.hpp index 2967e8131..cee6c0374 100644 --- a/src/openstudio_lib/DefaultConstructionSetsView.hpp +++ b/src/openstudio_lib/DefaultConstructionSetsView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/DesignDayGridView.cpp b/src/openstudio_lib/DesignDayGridView.cpp index d370e3466..ae6d6ff21 100644 --- a/src/openstudio_lib/DesignDayGridView.cpp +++ b/src/openstudio_lib/DesignDayGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/DesignDayGridView.hpp b/src/openstudio_lib/DesignDayGridView.hpp index 958dd2397..f41f9f5d1 100644 --- a/src/openstudio_lib/DesignDayGridView.hpp +++ b/src/openstudio_lib/DesignDayGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/EMSInspectorView.cpp b/src/openstudio_lib/EMSInspectorView.cpp index ebdeb853c..48f4a713c 100644 --- a/src/openstudio_lib/EMSInspectorView.cpp +++ b/src/openstudio_lib/EMSInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/EMSInspectorView.hpp b/src/openstudio_lib/EMSInspectorView.hpp index 608e9f6c1..130e47291 100644 --- a/src/openstudio_lib/EMSInspectorView.hpp +++ b/src/openstudio_lib/EMSInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ElectricEquipmentInspectorView.cpp b/src/openstudio_lib/ElectricEquipmentInspectorView.cpp index ef41a2d10..4466409dd 100644 --- a/src/openstudio_lib/ElectricEquipmentInspectorView.cpp +++ b/src/openstudio_lib/ElectricEquipmentInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ElectricEquipmentInspectorView.hpp b/src/openstudio_lib/ElectricEquipmentInspectorView.hpp index b1f57455a..09dc08402 100644 --- a/src/openstudio_lib/ElectricEquipmentInspectorView.hpp +++ b/src/openstudio_lib/ElectricEquipmentInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityExteriorEquipmentGridView.cpp b/src/openstudio_lib/FacilityExteriorEquipmentGridView.cpp index 0abb91728..ffc3af62d 100644 --- a/src/openstudio_lib/FacilityExteriorEquipmentGridView.cpp +++ b/src/openstudio_lib/FacilityExteriorEquipmentGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityExteriorEquipmentGridView.hpp b/src/openstudio_lib/FacilityExteriorEquipmentGridView.hpp index 9ca6e9cf8..6847a4d90 100644 --- a/src/openstudio_lib/FacilityExteriorEquipmentGridView.hpp +++ b/src/openstudio_lib/FacilityExteriorEquipmentGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityShadingGridView.cpp b/src/openstudio_lib/FacilityShadingGridView.cpp index f05f35628..762c3d569 100644 --- a/src/openstudio_lib/FacilityShadingGridView.cpp +++ b/src/openstudio_lib/FacilityShadingGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityShadingGridView.hpp b/src/openstudio_lib/FacilityShadingGridView.hpp index e7dd4ac1a..d3b74c9d9 100644 --- a/src/openstudio_lib/FacilityShadingGridView.hpp +++ b/src/openstudio_lib/FacilityShadingGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityStoriesGridView.cpp b/src/openstudio_lib/FacilityStoriesGridView.cpp index 938e91ab4..a924e9a4b 100644 --- a/src/openstudio_lib/FacilityStoriesGridView.cpp +++ b/src/openstudio_lib/FacilityStoriesGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityStoriesGridView.hpp b/src/openstudio_lib/FacilityStoriesGridView.hpp index 3ce65247f..75c916f4e 100644 --- a/src/openstudio_lib/FacilityStoriesGridView.hpp +++ b/src/openstudio_lib/FacilityStoriesGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityTabController.cpp b/src/openstudio_lib/FacilityTabController.cpp index 7f8eee73c..8f0e0eeb1 100644 --- a/src/openstudio_lib/FacilityTabController.cpp +++ b/src/openstudio_lib/FacilityTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityTabController.hpp b/src/openstudio_lib/FacilityTabController.hpp index d9e351554..02ed96c36 100644 --- a/src/openstudio_lib/FacilityTabController.hpp +++ b/src/openstudio_lib/FacilityTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityTabView.cpp b/src/openstudio_lib/FacilityTabView.cpp index 45e5855e1..e003ea12a 100644 --- a/src/openstudio_lib/FacilityTabView.cpp +++ b/src/openstudio_lib/FacilityTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/FacilityTabView.hpp b/src/openstudio_lib/FacilityTabView.hpp index ed4b4e5b0..379c25ed8 100644 --- a/src/openstudio_lib/FacilityTabView.hpp +++ b/src/openstudio_lib/FacilityTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GasEquipmentInspectorView.cpp b/src/openstudio_lib/GasEquipmentInspectorView.cpp index e0329e5a5..72fbb9aad 100644 --- a/src/openstudio_lib/GasEquipmentInspectorView.cpp +++ b/src/openstudio_lib/GasEquipmentInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GasEquipmentInspectorView.hpp b/src/openstudio_lib/GasEquipmentInspectorView.hpp index f814ab59f..3a84f2771 100644 --- a/src/openstudio_lib/GasEquipmentInspectorView.hpp +++ b/src/openstudio_lib/GasEquipmentInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryEditorController.cpp b/src/openstudio_lib/GeometryEditorController.cpp index 8e5d8c601..23ea93360 100644 --- a/src/openstudio_lib/GeometryEditorController.cpp +++ b/src/openstudio_lib/GeometryEditorController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryEditorController.hpp b/src/openstudio_lib/GeometryEditorController.hpp index 9938f16c8..33f15514c 100644 --- a/src/openstudio_lib/GeometryEditorController.hpp +++ b/src/openstudio_lib/GeometryEditorController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryEditorView.cpp b/src/openstudio_lib/GeometryEditorView.cpp index 7d7b3dee3..40b0e98cf 100644 --- a/src/openstudio_lib/GeometryEditorView.cpp +++ b/src/openstudio_lib/GeometryEditorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryEditorView.hpp b/src/openstudio_lib/GeometryEditorView.hpp index e9b6f8254..87c6761b2 100644 --- a/src/openstudio_lib/GeometryEditorView.hpp +++ b/src/openstudio_lib/GeometryEditorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryPreviewController.cpp b/src/openstudio_lib/GeometryPreviewController.cpp index b8b703cdb..e894aa6fc 100644 --- a/src/openstudio_lib/GeometryPreviewController.cpp +++ b/src/openstudio_lib/GeometryPreviewController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryPreviewController.hpp b/src/openstudio_lib/GeometryPreviewController.hpp index abf6617dd..e0ff37e98 100644 --- a/src/openstudio_lib/GeometryPreviewController.hpp +++ b/src/openstudio_lib/GeometryPreviewController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryPreviewView.cpp b/src/openstudio_lib/GeometryPreviewView.cpp index 05d052c62..cc47b1d5e 100644 --- a/src/openstudio_lib/GeometryPreviewView.cpp +++ b/src/openstudio_lib/GeometryPreviewView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryPreviewView.hpp b/src/openstudio_lib/GeometryPreviewView.hpp index 74ed548ee..ff6f0277d 100644 --- a/src/openstudio_lib/GeometryPreviewView.hpp +++ b/src/openstudio_lib/GeometryPreviewView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryTabController.cpp b/src/openstudio_lib/GeometryTabController.cpp index 337982f05..b762423aa 100644 --- a/src/openstudio_lib/GeometryTabController.cpp +++ b/src/openstudio_lib/GeometryTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryTabController.hpp b/src/openstudio_lib/GeometryTabController.hpp index 5b6b10c39..4056a6a5e 100644 --- a/src/openstudio_lib/GeometryTabController.hpp +++ b/src/openstudio_lib/GeometryTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryTabView.cpp b/src/openstudio_lib/GeometryTabView.cpp index d022f2aba..ecd98c65b 100644 --- a/src/openstudio_lib/GeometryTabView.cpp +++ b/src/openstudio_lib/GeometryTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GeometryTabView.hpp b/src/openstudio_lib/GeometryTabView.hpp index d835b1783..b043f821e 100644 --- a/src/openstudio_lib/GeometryTabView.hpp +++ b/src/openstudio_lib/GeometryTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GridItem.cpp b/src/openstudio_lib/GridItem.cpp index 89ebba96c..153b60f0e 100644 --- a/src/openstudio_lib/GridItem.cpp +++ b/src/openstudio_lib/GridItem.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GridItem.hpp b/src/openstudio_lib/GridItem.hpp index 0b6849fba..8ce9fdb38 100644 --- a/src/openstudio_lib/GridItem.hpp +++ b/src/openstudio_lib/GridItem.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GridScene.cpp b/src/openstudio_lib/GridScene.cpp index dbb5f31fe..f28537887 100644 --- a/src/openstudio_lib/GridScene.cpp +++ b/src/openstudio_lib/GridScene.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GridScene.hpp b/src/openstudio_lib/GridScene.hpp index 6d3e8ff1f..f9de3ce84 100644 --- a/src/openstudio_lib/GridScene.hpp +++ b/src/openstudio_lib/GridScene.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GridViewSubTab.cpp b/src/openstudio_lib/GridViewSubTab.cpp index 7109f7f18..4c876005a 100644 --- a/src/openstudio_lib/GridViewSubTab.cpp +++ b/src/openstudio_lib/GridViewSubTab.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/GridViewSubTab.hpp b/src/openstudio_lib/GridViewSubTab.hpp index 782e28c5f..6461417a6 100644 --- a/src/openstudio_lib/GridViewSubTab.hpp +++ b/src/openstudio_lib/GridViewSubTab.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACSystemsController.cpp b/src/openstudio_lib/HVACSystemsController.cpp index 57115fce8..c4faaf009 100644 --- a/src/openstudio_lib/HVACSystemsController.cpp +++ b/src/openstudio_lib/HVACSystemsController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACSystemsController.hpp b/src/openstudio_lib/HVACSystemsController.hpp index c18374801..cd2194aa5 100644 --- a/src/openstudio_lib/HVACSystemsController.hpp +++ b/src/openstudio_lib/HVACSystemsController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACSystemsTabController.cpp b/src/openstudio_lib/HVACSystemsTabController.cpp index 04fc93d8d..6fe01687a 100644 --- a/src/openstudio_lib/HVACSystemsTabController.cpp +++ b/src/openstudio_lib/HVACSystemsTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACSystemsTabController.hpp b/src/openstudio_lib/HVACSystemsTabController.hpp index 37a13bf1f..5578b08bd 100644 --- a/src/openstudio_lib/HVACSystemsTabController.hpp +++ b/src/openstudio_lib/HVACSystemsTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACSystemsTabView.cpp b/src/openstudio_lib/HVACSystemsTabView.cpp index e56d825ec..8d932342e 100644 --- a/src/openstudio_lib/HVACSystemsTabView.cpp +++ b/src/openstudio_lib/HVACSystemsTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACSystemsTabView.hpp b/src/openstudio_lib/HVACSystemsTabView.hpp index 10b46b4a3..94447f327 100644 --- a/src/openstudio_lib/HVACSystemsTabView.hpp +++ b/src/openstudio_lib/HVACSystemsTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACSystemsView.cpp b/src/openstudio_lib/HVACSystemsView.cpp index a28a37b98..76b7fda8f 100644 --- a/src/openstudio_lib/HVACSystemsView.cpp +++ b/src/openstudio_lib/HVACSystemsView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACSystemsView.hpp b/src/openstudio_lib/HVACSystemsView.hpp index 518253f38..7197d892b 100644 --- a/src/openstudio_lib/HVACSystemsView.hpp +++ b/src/openstudio_lib/HVACSystemsView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACTemplateHelperDialog.cpp b/src/openstudio_lib/HVACTemplateHelperDialog.cpp index 4253c227d..d6acc3664 100644 --- a/src/openstudio_lib/HVACTemplateHelperDialog.cpp +++ b/src/openstudio_lib/HVACTemplateHelperDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HVACTemplateHelperDialog.hpp b/src/openstudio_lib/HVACTemplateHelperDialog.hpp index c60076bcc..ab74b6094 100644 --- a/src/openstudio_lib/HVACTemplateHelperDialog.hpp +++ b/src/openstudio_lib/HVACTemplateHelperDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HorizontalTabWidget.cpp b/src/openstudio_lib/HorizontalTabWidget.cpp index 5cd412cbe..de6ee08c1 100644 --- a/src/openstudio_lib/HorizontalTabWidget.cpp +++ b/src/openstudio_lib/HorizontalTabWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/HorizontalTabWidget.hpp b/src/openstudio_lib/HorizontalTabWidget.hpp index 11ac20a39..cf7b86616 100644 --- a/src/openstudio_lib/HorizontalTabWidget.hpp +++ b/src/openstudio_lib/HorizontalTabWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/IconLibrary.cpp b/src/openstudio_lib/IconLibrary.cpp index 83ae12b8e..ec7a4add4 100644 --- a/src/openstudio_lib/IconLibrary.cpp +++ b/src/openstudio_lib/IconLibrary.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/IconLibrary.hpp b/src/openstudio_lib/IconLibrary.hpp index 29bf55a36..e794a88a5 100644 --- a/src/openstudio_lib/IconLibrary.hpp +++ b/src/openstudio_lib/IconLibrary.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/InspectorController.cpp b/src/openstudio_lib/InspectorController.cpp index e76faa094..43502f0ab 100644 --- a/src/openstudio_lib/InspectorController.cpp +++ b/src/openstudio_lib/InspectorController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/InspectorController.hpp b/src/openstudio_lib/InspectorController.hpp index bc81fb549..197284902 100644 --- a/src/openstudio_lib/InspectorController.hpp +++ b/src/openstudio_lib/InspectorController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/InspectorView.cpp b/src/openstudio_lib/InspectorView.cpp index 97c337870..0a66cdb43 100644 --- a/src/openstudio_lib/InspectorView.cpp +++ b/src/openstudio_lib/InspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/InspectorView.hpp b/src/openstudio_lib/InspectorView.hpp index fd6ae6ba1..c521db3d5 100644 --- a/src/openstudio_lib/InspectorView.hpp +++ b/src/openstudio_lib/InspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/InternalMassInspectorView.cpp b/src/openstudio_lib/InternalMassInspectorView.cpp index cc3a686b2..19cd181ff 100644 --- a/src/openstudio_lib/InternalMassInspectorView.cpp +++ b/src/openstudio_lib/InternalMassInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/InternalMassInspectorView.hpp b/src/openstudio_lib/InternalMassInspectorView.hpp index 003e37cb3..543845795 100644 --- a/src/openstudio_lib/InternalMassInspectorView.hpp +++ b/src/openstudio_lib/InternalMassInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LibraryTabWidget.cpp b/src/openstudio_lib/LibraryTabWidget.cpp index 3e8a0fb73..44813bb51 100644 --- a/src/openstudio_lib/LibraryTabWidget.cpp +++ b/src/openstudio_lib/LibraryTabWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LibraryTabWidget.hpp b/src/openstudio_lib/LibraryTabWidget.hpp index e678ca289..6c8122674 100644 --- a/src/openstudio_lib/LibraryTabWidget.hpp +++ b/src/openstudio_lib/LibraryTabWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LifeCycleCostsTabView.cpp b/src/openstudio_lib/LifeCycleCostsTabView.cpp index eb12e517a..16701a9b0 100644 --- a/src/openstudio_lib/LifeCycleCostsTabView.cpp +++ b/src/openstudio_lib/LifeCycleCostsTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LifeCycleCostsTabView.hpp b/src/openstudio_lib/LifeCycleCostsTabView.hpp index 785809ff2..f70eec876 100644 --- a/src/openstudio_lib/LifeCycleCostsTabView.hpp +++ b/src/openstudio_lib/LifeCycleCostsTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LightsInspectorView.cpp b/src/openstudio_lib/LightsInspectorView.cpp index d66f92729..bc4b09825 100644 --- a/src/openstudio_lib/LightsInspectorView.cpp +++ b/src/openstudio_lib/LightsInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LightsInspectorView.hpp b/src/openstudio_lib/LightsInspectorView.hpp index b1070e4ef..fb4f1a383 100644 --- a/src/openstudio_lib/LightsInspectorView.hpp +++ b/src/openstudio_lib/LightsInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoadsController.cpp b/src/openstudio_lib/LoadsController.cpp index ee99026a3..526deb4e1 100644 --- a/src/openstudio_lib/LoadsController.cpp +++ b/src/openstudio_lib/LoadsController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoadsController.hpp b/src/openstudio_lib/LoadsController.hpp index c26f61dfd..329c0e06f 100644 --- a/src/openstudio_lib/LoadsController.hpp +++ b/src/openstudio_lib/LoadsController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoadsTabController.cpp b/src/openstudio_lib/LoadsTabController.cpp index 2b4f2e0e1..84e6d08ab 100644 --- a/src/openstudio_lib/LoadsTabController.cpp +++ b/src/openstudio_lib/LoadsTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoadsTabController.hpp b/src/openstudio_lib/LoadsTabController.hpp index 89bc6f87c..c68dcdd62 100644 --- a/src/openstudio_lib/LoadsTabController.hpp +++ b/src/openstudio_lib/LoadsTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoadsTabView.cpp b/src/openstudio_lib/LoadsTabView.cpp index b848c5496..0154f9be6 100644 --- a/src/openstudio_lib/LoadsTabView.cpp +++ b/src/openstudio_lib/LoadsTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoadsTabView.hpp b/src/openstudio_lib/LoadsTabView.hpp index cd45799f9..7fbf48fd8 100644 --- a/src/openstudio_lib/LoadsTabView.hpp +++ b/src/openstudio_lib/LoadsTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoadsView.cpp b/src/openstudio_lib/LoadsView.cpp index 7da4136b0..cbc96d6b2 100644 --- a/src/openstudio_lib/LoadsView.cpp +++ b/src/openstudio_lib/LoadsView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoadsView.hpp b/src/openstudio_lib/LoadsView.hpp index 828a4dead..00bfb8354 100644 --- a/src/openstudio_lib/LoadsView.hpp +++ b/src/openstudio_lib/LoadsView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LocationTabController.cpp b/src/openstudio_lib/LocationTabController.cpp index 1d4c18f71..9b4017866 100644 --- a/src/openstudio_lib/LocationTabController.cpp +++ b/src/openstudio_lib/LocationTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LocationTabController.hpp b/src/openstudio_lib/LocationTabController.hpp index 037a6a6c5..fd7d29dad 100644 --- a/src/openstudio_lib/LocationTabController.hpp +++ b/src/openstudio_lib/LocationTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LocationTabView.cpp b/src/openstudio_lib/LocationTabView.cpp index 3f2cde546..dc635caac 100644 --- a/src/openstudio_lib/LocationTabView.cpp +++ b/src/openstudio_lib/LocationTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LocationTabView.hpp b/src/openstudio_lib/LocationTabView.hpp index ad7ac35a5..8ceb2014c 100644 --- a/src/openstudio_lib/LocationTabView.hpp +++ b/src/openstudio_lib/LocationTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoopChooserView.cpp b/src/openstudio_lib/LoopChooserView.cpp index 6590cd5b4..f31c1ab14 100644 --- a/src/openstudio_lib/LoopChooserView.cpp +++ b/src/openstudio_lib/LoopChooserView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoopChooserView.hpp b/src/openstudio_lib/LoopChooserView.hpp index db850dcf2..6c105a218 100644 --- a/src/openstudio_lib/LoopChooserView.hpp +++ b/src/openstudio_lib/LoopChooserView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoopLibraryDialog.cpp b/src/openstudio_lib/LoopLibraryDialog.cpp index a276f2efc..787405e15 100644 --- a/src/openstudio_lib/LoopLibraryDialog.cpp +++ b/src/openstudio_lib/LoopLibraryDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoopLibraryDialog.hpp b/src/openstudio_lib/LoopLibraryDialog.hpp index 41042aa07..53a84b75d 100644 --- a/src/openstudio_lib/LoopLibraryDialog.hpp +++ b/src/openstudio_lib/LoopLibraryDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoopScene.cpp b/src/openstudio_lib/LoopScene.cpp index 3abd8d029..7544cbdd4 100644 --- a/src/openstudio_lib/LoopScene.cpp +++ b/src/openstudio_lib/LoopScene.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LoopScene.hpp b/src/openstudio_lib/LoopScene.hpp index 2820a28c3..d2e98078c 100644 --- a/src/openstudio_lib/LoopScene.hpp +++ b/src/openstudio_lib/LoopScene.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LuminaireInspectorView.cpp b/src/openstudio_lib/LuminaireInspectorView.cpp index 6f180d5d6..c088247c8 100644 --- a/src/openstudio_lib/LuminaireInspectorView.cpp +++ b/src/openstudio_lib/LuminaireInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/LuminaireInspectorView.hpp b/src/openstudio_lib/LuminaireInspectorView.hpp index 1afbcb2eb..22b8e80d0 100644 --- a/src/openstudio_lib/LuminaireInspectorView.hpp +++ b/src/openstudio_lib/LuminaireInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainMenu.cpp b/src/openstudio_lib/MainMenu.cpp index 8a9a5a1e7..a0312f3ac 100644 --- a/src/openstudio_lib/MainMenu.cpp +++ b/src/openstudio_lib/MainMenu.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainMenu.hpp b/src/openstudio_lib/MainMenu.hpp index 96b93ff46..96c221dfc 100644 --- a/src/openstudio_lib/MainMenu.hpp +++ b/src/openstudio_lib/MainMenu.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainRightColumnController.cpp b/src/openstudio_lib/MainRightColumnController.cpp index 956539ce8..e77e981ea 100644 --- a/src/openstudio_lib/MainRightColumnController.cpp +++ b/src/openstudio_lib/MainRightColumnController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainRightColumnController.hpp b/src/openstudio_lib/MainRightColumnController.hpp index af9342aef..aae5f17d3 100644 --- a/src/openstudio_lib/MainRightColumnController.hpp +++ b/src/openstudio_lib/MainRightColumnController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainTabController.cpp b/src/openstudio_lib/MainTabController.cpp index 28cdbe7da..937a24ff5 100644 --- a/src/openstudio_lib/MainTabController.cpp +++ b/src/openstudio_lib/MainTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainTabController.hpp b/src/openstudio_lib/MainTabController.hpp index 81ca66a01..5d7a0d9e5 100644 --- a/src/openstudio_lib/MainTabController.hpp +++ b/src/openstudio_lib/MainTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainTabView.cpp b/src/openstudio_lib/MainTabView.cpp index a59d4a9a6..9e625f34d 100644 --- a/src/openstudio_lib/MainTabView.cpp +++ b/src/openstudio_lib/MainTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainTabView.hpp b/src/openstudio_lib/MainTabView.hpp index 60a5aa54a..464a16d0d 100644 --- a/src/openstudio_lib/MainTabView.hpp +++ b/src/openstudio_lib/MainTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainWindow.cpp b/src/openstudio_lib/MainWindow.cpp index 933272d25..38520c7fe 100644 --- a/src/openstudio_lib/MainWindow.cpp +++ b/src/openstudio_lib/MainWindow.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MainWindow.hpp b/src/openstudio_lib/MainWindow.hpp index 2639eb9d9..15098d6ac 100644 --- a/src/openstudio_lib/MainWindow.hpp +++ b/src/openstudio_lib/MainWindow.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialAirGapInspectorView.cpp b/src/openstudio_lib/MaterialAirGapInspectorView.cpp index bc6e8e4f4..af1bfdc37 100644 --- a/src/openstudio_lib/MaterialAirGapInspectorView.cpp +++ b/src/openstudio_lib/MaterialAirGapInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialAirGapInspectorView.hpp b/src/openstudio_lib/MaterialAirGapInspectorView.hpp index a5b3a6dab..952310d4b 100644 --- a/src/openstudio_lib/MaterialAirGapInspectorView.hpp +++ b/src/openstudio_lib/MaterialAirGapInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialAirWallInspectorView.cpp b/src/openstudio_lib/MaterialAirWallInspectorView.cpp index 3cde95086..f0568c199 100644 --- a/src/openstudio_lib/MaterialAirWallInspectorView.cpp +++ b/src/openstudio_lib/MaterialAirWallInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialAirWallInspectorView.hpp b/src/openstudio_lib/MaterialAirWallInspectorView.hpp index 0d7f59bd1..e63d07a99 100644 --- a/src/openstudio_lib/MaterialAirWallInspectorView.hpp +++ b/src/openstudio_lib/MaterialAirWallInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialInfraredTransparentInspectorView.cpp b/src/openstudio_lib/MaterialInfraredTransparentInspectorView.cpp index 53aaef1ac..7a497c65a 100644 --- a/src/openstudio_lib/MaterialInfraredTransparentInspectorView.cpp +++ b/src/openstudio_lib/MaterialInfraredTransparentInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialInfraredTransparentInspectorView.hpp b/src/openstudio_lib/MaterialInfraredTransparentInspectorView.hpp index e752fa149..b7ed746d5 100644 --- a/src/openstudio_lib/MaterialInfraredTransparentInspectorView.hpp +++ b/src/openstudio_lib/MaterialInfraredTransparentInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialInspectorView.cpp b/src/openstudio_lib/MaterialInspectorView.cpp index 38993f9c2..4b0181b69 100644 --- a/src/openstudio_lib/MaterialInspectorView.cpp +++ b/src/openstudio_lib/MaterialInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialInspectorView.hpp b/src/openstudio_lib/MaterialInspectorView.hpp index ef7e82025..57462482a 100644 --- a/src/openstudio_lib/MaterialInspectorView.hpp +++ b/src/openstudio_lib/MaterialInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialNoMassInspectorView.cpp b/src/openstudio_lib/MaterialNoMassInspectorView.cpp index 0ef012d36..4eb532623 100644 --- a/src/openstudio_lib/MaterialNoMassInspectorView.cpp +++ b/src/openstudio_lib/MaterialNoMassInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialNoMassInspectorView.hpp b/src/openstudio_lib/MaterialNoMassInspectorView.hpp index 91ac851c2..c88bf612f 100644 --- a/src/openstudio_lib/MaterialNoMassInspectorView.hpp +++ b/src/openstudio_lib/MaterialNoMassInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialRoofVegetationInspectorView.cpp b/src/openstudio_lib/MaterialRoofVegetationInspectorView.cpp index 8b5e2367b..8e7873ab3 100644 --- a/src/openstudio_lib/MaterialRoofVegetationInspectorView.cpp +++ b/src/openstudio_lib/MaterialRoofVegetationInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialRoofVegetationInspectorView.hpp b/src/openstudio_lib/MaterialRoofVegetationInspectorView.hpp index f72cad34a..07eefbde6 100644 --- a/src/openstudio_lib/MaterialRoofVegetationInspectorView.hpp +++ b/src/openstudio_lib/MaterialRoofVegetationInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialsController.cpp b/src/openstudio_lib/MaterialsController.cpp index 38a64aa2b..1e76b4bca 100644 --- a/src/openstudio_lib/MaterialsController.cpp +++ b/src/openstudio_lib/MaterialsController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialsController.hpp b/src/openstudio_lib/MaterialsController.hpp index ddb8f9844..8d34ca433 100644 --- a/src/openstudio_lib/MaterialsController.hpp +++ b/src/openstudio_lib/MaterialsController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialsView.cpp b/src/openstudio_lib/MaterialsView.cpp index 18847a383..47c1c75b6 100644 --- a/src/openstudio_lib/MaterialsView.cpp +++ b/src/openstudio_lib/MaterialsView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/MaterialsView.hpp b/src/openstudio_lib/MaterialsView.hpp index d89b9830f..b9b894246 100644 --- a/src/openstudio_lib/MaterialsView.hpp +++ b/src/openstudio_lib/MaterialsView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectInspectorView.cpp b/src/openstudio_lib/ModelObjectInspectorView.cpp index 470c3dda0..e010b33d2 100644 --- a/src/openstudio_lib/ModelObjectInspectorView.cpp +++ b/src/openstudio_lib/ModelObjectInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectInspectorView.hpp b/src/openstudio_lib/ModelObjectInspectorView.hpp index 645c1dbd4..5dc2acd76 100644 --- a/src/openstudio_lib/ModelObjectInspectorView.hpp +++ b/src/openstudio_lib/ModelObjectInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectItem.cpp b/src/openstudio_lib/ModelObjectItem.cpp index 22b28666c..d9986222f 100644 --- a/src/openstudio_lib/ModelObjectItem.cpp +++ b/src/openstudio_lib/ModelObjectItem.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectItem.hpp b/src/openstudio_lib/ModelObjectItem.hpp index 3483138a3..1e46f486f 100644 --- a/src/openstudio_lib/ModelObjectItem.hpp +++ b/src/openstudio_lib/ModelObjectItem.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectListView.cpp b/src/openstudio_lib/ModelObjectListView.cpp index 9cf45ec5d..9f4f56ceb 100644 --- a/src/openstudio_lib/ModelObjectListView.cpp +++ b/src/openstudio_lib/ModelObjectListView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectListView.hpp b/src/openstudio_lib/ModelObjectListView.hpp index 3847098cc..a2f15a574 100644 --- a/src/openstudio_lib/ModelObjectListView.hpp +++ b/src/openstudio_lib/ModelObjectListView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectTreeItems.cpp b/src/openstudio_lib/ModelObjectTreeItems.cpp index ce95ebbc2..615b4edc2 100644 --- a/src/openstudio_lib/ModelObjectTreeItems.cpp +++ b/src/openstudio_lib/ModelObjectTreeItems.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectTreeItems.hpp b/src/openstudio_lib/ModelObjectTreeItems.hpp index 4c5d15af7..2503bb5f4 100644 --- a/src/openstudio_lib/ModelObjectTreeItems.hpp +++ b/src/openstudio_lib/ModelObjectTreeItems.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectTreeWidget.cpp b/src/openstudio_lib/ModelObjectTreeWidget.cpp index 50663d7f9..a976fe45f 100644 --- a/src/openstudio_lib/ModelObjectTreeWidget.cpp +++ b/src/openstudio_lib/ModelObjectTreeWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectTreeWidget.hpp b/src/openstudio_lib/ModelObjectTreeWidget.hpp index 0a6b1874b..3e1cb9ca9 100644 --- a/src/openstudio_lib/ModelObjectTreeWidget.hpp +++ b/src/openstudio_lib/ModelObjectTreeWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectTypeItem.cpp b/src/openstudio_lib/ModelObjectTypeItem.cpp index d414e382e..e19dfda79 100644 --- a/src/openstudio_lib/ModelObjectTypeItem.cpp +++ b/src/openstudio_lib/ModelObjectTypeItem.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectTypeItem.hpp b/src/openstudio_lib/ModelObjectTypeItem.hpp index 4762f5f8e..3d189f174 100644 --- a/src/openstudio_lib/ModelObjectTypeItem.hpp +++ b/src/openstudio_lib/ModelObjectTypeItem.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectTypeListView.cpp b/src/openstudio_lib/ModelObjectTypeListView.cpp index e68799b2a..ce036ec6b 100644 --- a/src/openstudio_lib/ModelObjectTypeListView.cpp +++ b/src/openstudio_lib/ModelObjectTypeListView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectTypeListView.hpp b/src/openstudio_lib/ModelObjectTypeListView.hpp index ff39507f9..b077846e0 100644 --- a/src/openstudio_lib/ModelObjectTypeListView.hpp +++ b/src/openstudio_lib/ModelObjectTypeListView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectVectorController.cpp b/src/openstudio_lib/ModelObjectVectorController.cpp index e285431ff..8288906ec 100644 --- a/src/openstudio_lib/ModelObjectVectorController.cpp +++ b/src/openstudio_lib/ModelObjectVectorController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelObjectVectorController.hpp b/src/openstudio_lib/ModelObjectVectorController.hpp index 8b3c13964..be6415e00 100644 --- a/src/openstudio_lib/ModelObjectVectorController.hpp +++ b/src/openstudio_lib/ModelObjectVectorController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelSubTabController.cpp b/src/openstudio_lib/ModelSubTabController.cpp index fa4f09585..8c84e42db 100644 --- a/src/openstudio_lib/ModelSubTabController.cpp +++ b/src/openstudio_lib/ModelSubTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelSubTabController.hpp b/src/openstudio_lib/ModelSubTabController.hpp index ecde3f89e..7be2916bf 100644 --- a/src/openstudio_lib/ModelSubTabController.hpp +++ b/src/openstudio_lib/ModelSubTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelSubTabView.cpp b/src/openstudio_lib/ModelSubTabView.cpp index 91c93c776..bcc1d1003 100644 --- a/src/openstudio_lib/ModelSubTabView.cpp +++ b/src/openstudio_lib/ModelSubTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ModelSubTabView.hpp b/src/openstudio_lib/ModelSubTabView.hpp index 666b3cf2a..8ce5565ae 100644 --- a/src/openstudio_lib/ModelSubTabView.hpp +++ b/src/openstudio_lib/ModelSubTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSAppBase.cpp b/src/openstudio_lib/OSAppBase.cpp index 98125b2cc..294b79fea 100644 --- a/src/openstudio_lib/OSAppBase.cpp +++ b/src/openstudio_lib/OSAppBase.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSAppBase.hpp b/src/openstudio_lib/OSAppBase.hpp index 42f1c9173..b00faaa48 100644 --- a/src/openstudio_lib/OSAppBase.hpp +++ b/src/openstudio_lib/OSAppBase.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSCollapsibleItem.cpp b/src/openstudio_lib/OSCollapsibleItem.cpp index 1a2fa67ba..01a27d353 100644 --- a/src/openstudio_lib/OSCollapsibleItem.cpp +++ b/src/openstudio_lib/OSCollapsibleItem.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSCollapsibleItem.hpp b/src/openstudio_lib/OSCollapsibleItem.hpp index 07e0e2d46..c85ef9b25 100644 --- a/src/openstudio_lib/OSCollapsibleItem.hpp +++ b/src/openstudio_lib/OSCollapsibleItem.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSCollapsibleItemHeader.cpp b/src/openstudio_lib/OSCollapsibleItemHeader.cpp index 5afa3bbb6..63d125d56 100644 --- a/src/openstudio_lib/OSCollapsibleItemHeader.cpp +++ b/src/openstudio_lib/OSCollapsibleItemHeader.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSCollapsibleItemHeader.hpp b/src/openstudio_lib/OSCollapsibleItemHeader.hpp index 9ad7cf2bf..9900a4dbb 100644 --- a/src/openstudio_lib/OSCollapsibleItemHeader.hpp +++ b/src/openstudio_lib/OSCollapsibleItemHeader.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSCollapsibleItemList.cpp b/src/openstudio_lib/OSCollapsibleItemList.cpp index bc11ecc75..af7e002cc 100644 --- a/src/openstudio_lib/OSCollapsibleItemList.cpp +++ b/src/openstudio_lib/OSCollapsibleItemList.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSCollapsibleItemList.hpp b/src/openstudio_lib/OSCollapsibleItemList.hpp index 9f68637c1..0438e17d0 100644 --- a/src/openstudio_lib/OSCollapsibleItemList.hpp +++ b/src/openstudio_lib/OSCollapsibleItemList.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSDocument.cpp b/src/openstudio_lib/OSDocument.cpp index 7b8b7f844..f4512f0bd 100644 --- a/src/openstudio_lib/OSDocument.cpp +++ b/src/openstudio_lib/OSDocument.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSDocument.hpp b/src/openstudio_lib/OSDocument.hpp index 7aaabe130..0be1650df 100644 --- a/src/openstudio_lib/OSDocument.hpp +++ b/src/openstudio_lib/OSDocument.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSDropZone.cpp b/src/openstudio_lib/OSDropZone.cpp index 4c180acec..4e68b8c58 100644 --- a/src/openstudio_lib/OSDropZone.cpp +++ b/src/openstudio_lib/OSDropZone.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSDropZone.hpp b/src/openstudio_lib/OSDropZone.hpp index 03f0d172f..f2cd1c2d3 100644 --- a/src/openstudio_lib/OSDropZone.hpp +++ b/src/openstudio_lib/OSDropZone.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSInspectorView.cpp b/src/openstudio_lib/OSInspectorView.cpp index 1eb8d2389..9920807ae 100644 --- a/src/openstudio_lib/OSInspectorView.cpp +++ b/src/openstudio_lib/OSInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSInspectorView.hpp b/src/openstudio_lib/OSInspectorView.hpp index 5d07b13d2..5472cb671 100644 --- a/src/openstudio_lib/OSInspectorView.hpp +++ b/src/openstudio_lib/OSInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSItem.cpp b/src/openstudio_lib/OSItem.cpp index f8ed47891..0ed567ea7 100644 --- a/src/openstudio_lib/OSItem.cpp +++ b/src/openstudio_lib/OSItem.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSItem.hpp b/src/openstudio_lib/OSItem.hpp index 115d63700..88b21a372 100644 --- a/src/openstudio_lib/OSItem.hpp +++ b/src/openstudio_lib/OSItem.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSItemList.cpp b/src/openstudio_lib/OSItemList.cpp index 6d2ddedb3..64aa3142c 100644 --- a/src/openstudio_lib/OSItemList.cpp +++ b/src/openstudio_lib/OSItemList.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSItemList.hpp b/src/openstudio_lib/OSItemList.hpp index 10773faa7..e397fee3c 100644 --- a/src/openstudio_lib/OSItemList.hpp +++ b/src/openstudio_lib/OSItemList.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSItemSelector.cpp b/src/openstudio_lib/OSItemSelector.cpp index 315fdab3f..8190013dd 100644 --- a/src/openstudio_lib/OSItemSelector.cpp +++ b/src/openstudio_lib/OSItemSelector.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSItemSelector.hpp b/src/openstudio_lib/OSItemSelector.hpp index ebaf34c29..d0d6f47b8 100644 --- a/src/openstudio_lib/OSItemSelector.hpp +++ b/src/openstudio_lib/OSItemSelector.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSItemSelectorButtons.cpp b/src/openstudio_lib/OSItemSelectorButtons.cpp index f7ccda65c..d1caacce9 100644 --- a/src/openstudio_lib/OSItemSelectorButtons.cpp +++ b/src/openstudio_lib/OSItemSelectorButtons.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSItemSelectorButtons.hpp b/src/openstudio_lib/OSItemSelectorButtons.hpp index 1a0639094..74a1ddba9 100644 --- a/src/openstudio_lib/OSItemSelectorButtons.hpp +++ b/src/openstudio_lib/OSItemSelectorButtons.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSVectorController.cpp b/src/openstudio_lib/OSVectorController.cpp index c28f18d8b..80e314ce3 100644 --- a/src/openstudio_lib/OSVectorController.cpp +++ b/src/openstudio_lib/OSVectorController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSVectorController.hpp b/src/openstudio_lib/OSVectorController.hpp index 53f99b819..aad3bc895 100644 --- a/src/openstudio_lib/OSVectorController.hpp +++ b/src/openstudio_lib/OSVectorController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSWebEnginePage.cpp b/src/openstudio_lib/OSWebEnginePage.cpp index 69d2ec0ae..5e5bbacf3 100644 --- a/src/openstudio_lib/OSWebEnginePage.cpp +++ b/src/openstudio_lib/OSWebEnginePage.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OSWebEnginePage.hpp b/src/openstudio_lib/OSWebEnginePage.hpp index ee680ccab..5a01a126f 100644 --- a/src/openstudio_lib/OSWebEnginePage.hpp +++ b/src/openstudio_lib/OSWebEnginePage.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OpenStudioAPI.hpp b/src/openstudio_lib/OpenStudioAPI.hpp index 4d0055de4..9d9070f39 100644 --- a/src/openstudio_lib/OpenStudioAPI.hpp +++ b/src/openstudio_lib/OpenStudioAPI.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OtherEquipmentInspectorView.cpp b/src/openstudio_lib/OtherEquipmentInspectorView.cpp index 7f22c7523..ddb799060 100644 --- a/src/openstudio_lib/OtherEquipmentInspectorView.cpp +++ b/src/openstudio_lib/OtherEquipmentInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/OtherEquipmentInspectorView.hpp b/src/openstudio_lib/OtherEquipmentInspectorView.hpp index 4fc83ae6f..db158e249 100644 --- a/src/openstudio_lib/OtherEquipmentInspectorView.hpp +++ b/src/openstudio_lib/OtherEquipmentInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/PeopleInspectorView.cpp b/src/openstudio_lib/PeopleInspectorView.cpp index edb9e5baf..2ad3371d6 100644 --- a/src/openstudio_lib/PeopleInspectorView.cpp +++ b/src/openstudio_lib/PeopleInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/PeopleInspectorView.hpp b/src/openstudio_lib/PeopleInspectorView.hpp index f69bb7295..ada1c77d8 100644 --- a/src/openstudio_lib/PeopleInspectorView.hpp +++ b/src/openstudio_lib/PeopleInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/PlanarSurfaceWidget.cpp b/src/openstudio_lib/PlanarSurfaceWidget.cpp index 504c47ea9..b94578f1c 100644 --- a/src/openstudio_lib/PlanarSurfaceWidget.cpp +++ b/src/openstudio_lib/PlanarSurfaceWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/PlanarSurfaceWidget.hpp b/src/openstudio_lib/PlanarSurfaceWidget.hpp index 466698791..2f92e2a3a 100644 --- a/src/openstudio_lib/PlanarSurfaceWidget.hpp +++ b/src/openstudio_lib/PlanarSurfaceWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RadianceDialog.cpp b/src/openstudio_lib/RadianceDialog.cpp index 8b2cb57fd..cced6df46 100644 --- a/src/openstudio_lib/RadianceDialog.cpp +++ b/src/openstudio_lib/RadianceDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RadianceDialog.hpp b/src/openstudio_lib/RadianceDialog.hpp index 8929bb85a..3e0552753 100644 --- a/src/openstudio_lib/RadianceDialog.hpp +++ b/src/openstudio_lib/RadianceDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationController.cpp b/src/openstudio_lib/RefrigerationController.cpp index 27955326c..cb8288331 100644 --- a/src/openstudio_lib/RefrigerationController.cpp +++ b/src/openstudio_lib/RefrigerationController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationController.hpp b/src/openstudio_lib/RefrigerationController.hpp index 0b4965f53..126b9b600 100644 --- a/src/openstudio_lib/RefrigerationController.hpp +++ b/src/openstudio_lib/RefrigerationController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationGraphicsItems.cpp b/src/openstudio_lib/RefrigerationGraphicsItems.cpp index bff8931e6..dc92e176e 100644 --- a/src/openstudio_lib/RefrigerationGraphicsItems.cpp +++ b/src/openstudio_lib/RefrigerationGraphicsItems.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationGraphicsItems.hpp b/src/openstudio_lib/RefrigerationGraphicsItems.hpp index 1e75c27cd..c743e9698 100644 --- a/src/openstudio_lib/RefrigerationGraphicsItems.hpp +++ b/src/openstudio_lib/RefrigerationGraphicsItems.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationGridController.cpp b/src/openstudio_lib/RefrigerationGridController.cpp index f520bf329..c641800a8 100644 --- a/src/openstudio_lib/RefrigerationGridController.cpp +++ b/src/openstudio_lib/RefrigerationGridController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationGridController.hpp b/src/openstudio_lib/RefrigerationGridController.hpp index 04a944f62..1d62ecec2 100644 --- a/src/openstudio_lib/RefrigerationGridController.hpp +++ b/src/openstudio_lib/RefrigerationGridController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationGridView.cpp b/src/openstudio_lib/RefrigerationGridView.cpp index 5c6aff59e..464ca3423 100644 --- a/src/openstudio_lib/RefrigerationGridView.cpp +++ b/src/openstudio_lib/RefrigerationGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationGridView.hpp b/src/openstudio_lib/RefrigerationGridView.hpp index 1cf9a9132..b81cce07f 100644 --- a/src/openstudio_lib/RefrigerationGridView.hpp +++ b/src/openstudio_lib/RefrigerationGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationScene.cpp b/src/openstudio_lib/RefrigerationScene.cpp index 6a5612517..f0e45d67f 100644 --- a/src/openstudio_lib/RefrigerationScene.cpp +++ b/src/openstudio_lib/RefrigerationScene.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RefrigerationScene.hpp b/src/openstudio_lib/RefrigerationScene.hpp index 7946a4eaa..80ede4f31 100644 --- a/src/openstudio_lib/RefrigerationScene.hpp +++ b/src/openstudio_lib/RefrigerationScene.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RenderingColorWidget.cpp b/src/openstudio_lib/RenderingColorWidget.cpp index f7d1d229a..dace1aeb2 100644 --- a/src/openstudio_lib/RenderingColorWidget.cpp +++ b/src/openstudio_lib/RenderingColorWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RenderingColorWidget.hpp b/src/openstudio_lib/RenderingColorWidget.hpp index d1bf7ad68..410e90693 100644 --- a/src/openstudio_lib/RenderingColorWidget.hpp +++ b/src/openstudio_lib/RenderingColorWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ResultsTabController.cpp b/src/openstudio_lib/ResultsTabController.cpp index 45db70c86..5a5af2091 100644 --- a/src/openstudio_lib/ResultsTabController.cpp +++ b/src/openstudio_lib/ResultsTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ResultsTabController.hpp b/src/openstudio_lib/ResultsTabController.hpp index 824a1fde4..10a4c1543 100644 --- a/src/openstudio_lib/ResultsTabController.hpp +++ b/src/openstudio_lib/ResultsTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ResultsTabView.cpp b/src/openstudio_lib/ResultsTabView.cpp index 2b7e939dc..eaa741b0d 100644 --- a/src/openstudio_lib/ResultsTabView.cpp +++ b/src/openstudio_lib/ResultsTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ResultsTabView.hpp b/src/openstudio_lib/ResultsTabView.hpp index 9b5896261..88579f4b9 100644 --- a/src/openstudio_lib/ResultsTabView.hpp +++ b/src/openstudio_lib/ResultsTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RunTabController.cpp b/src/openstudio_lib/RunTabController.cpp index 509f3c067..ce04d0678 100644 --- a/src/openstudio_lib/RunTabController.cpp +++ b/src/openstudio_lib/RunTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RunTabController.hpp b/src/openstudio_lib/RunTabController.hpp index 6738c6a99..102ea1cac 100644 --- a/src/openstudio_lib/RunTabController.hpp +++ b/src/openstudio_lib/RunTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RunTabView.cpp b/src/openstudio_lib/RunTabView.cpp index c67f2dbe8..267349023 100644 --- a/src/openstudio_lib/RunTabView.cpp +++ b/src/openstudio_lib/RunTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/RunTabView.hpp b/src/openstudio_lib/RunTabView.hpp index 9d2a0103a..9620aaf55 100644 --- a/src/openstudio_lib/RunTabView.hpp +++ b/src/openstudio_lib/RunTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SOConstants.hpp b/src/openstudio_lib/SOConstants.hpp index 825049ab2..69fc2d525 100644 --- a/src/openstudio_lib/SOConstants.hpp +++ b/src/openstudio_lib/SOConstants.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleDayView.cpp b/src/openstudio_lib/ScheduleDayView.cpp index 67edbdb94..e2f7f7a8f 100644 --- a/src/openstudio_lib/ScheduleDayView.cpp +++ b/src/openstudio_lib/ScheduleDayView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleDayView.hpp b/src/openstudio_lib/ScheduleDayView.hpp index c027a88db..ee4c3b41a 100644 --- a/src/openstudio_lib/ScheduleDayView.hpp +++ b/src/openstudio_lib/ScheduleDayView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleDialog.cpp b/src/openstudio_lib/ScheduleDialog.cpp index a6895d79e..2e08415ed 100644 --- a/src/openstudio_lib/ScheduleDialog.cpp +++ b/src/openstudio_lib/ScheduleDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleDialog.hpp b/src/openstudio_lib/ScheduleDialog.hpp index 2699d7f06..dec2eb7de 100644 --- a/src/openstudio_lib/ScheduleDialog.hpp +++ b/src/openstudio_lib/ScheduleDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleSetInspectorView.cpp b/src/openstudio_lib/ScheduleSetInspectorView.cpp index 9aa2c9353..5b29f4563 100644 --- a/src/openstudio_lib/ScheduleSetInspectorView.cpp +++ b/src/openstudio_lib/ScheduleSetInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleSetInspectorView.hpp b/src/openstudio_lib/ScheduleSetInspectorView.hpp index 9c47e0ab4..2a525f6cb 100644 --- a/src/openstudio_lib/ScheduleSetInspectorView.hpp +++ b/src/openstudio_lib/ScheduleSetInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleSetsController.cpp b/src/openstudio_lib/ScheduleSetsController.cpp index 9a5f871ed..053977d52 100644 --- a/src/openstudio_lib/ScheduleSetsController.cpp +++ b/src/openstudio_lib/ScheduleSetsController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleSetsController.hpp b/src/openstudio_lib/ScheduleSetsController.hpp index a28629342..a4d55f8ab 100644 --- a/src/openstudio_lib/ScheduleSetsController.hpp +++ b/src/openstudio_lib/ScheduleSetsController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleSetsView.cpp b/src/openstudio_lib/ScheduleSetsView.cpp index 067cd78b2..aa063c812 100644 --- a/src/openstudio_lib/ScheduleSetsView.cpp +++ b/src/openstudio_lib/ScheduleSetsView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScheduleSetsView.hpp b/src/openstudio_lib/ScheduleSetsView.hpp index 280ea9ca8..224066b13 100644 --- a/src/openstudio_lib/ScheduleSetsView.hpp +++ b/src/openstudio_lib/ScheduleSetsView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SchedulesTabController.cpp b/src/openstudio_lib/SchedulesTabController.cpp index 1bcb14dd1..476aa7d5b 100644 --- a/src/openstudio_lib/SchedulesTabController.cpp +++ b/src/openstudio_lib/SchedulesTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SchedulesTabController.hpp b/src/openstudio_lib/SchedulesTabController.hpp index 78c16af7e..2a2e6b5a9 100644 --- a/src/openstudio_lib/SchedulesTabController.hpp +++ b/src/openstudio_lib/SchedulesTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SchedulesTabView.cpp b/src/openstudio_lib/SchedulesTabView.cpp index b5f3914e8..ecd3ba2a1 100644 --- a/src/openstudio_lib/SchedulesTabView.cpp +++ b/src/openstudio_lib/SchedulesTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SchedulesTabView.hpp b/src/openstudio_lib/SchedulesTabView.hpp index 2ad336990..6e7eb6583 100644 --- a/src/openstudio_lib/SchedulesTabView.hpp +++ b/src/openstudio_lib/SchedulesTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SchedulesView.cpp b/src/openstudio_lib/SchedulesView.cpp index 475131acc..e0ec3fa88 100644 --- a/src/openstudio_lib/SchedulesView.cpp +++ b/src/openstudio_lib/SchedulesView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SchedulesView.hpp b/src/openstudio_lib/SchedulesView.hpp index 9619427d3..c459b1c9d 100644 --- a/src/openstudio_lib/SchedulesView.hpp +++ b/src/openstudio_lib/SchedulesView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScriptFolderListView.cpp b/src/openstudio_lib/ScriptFolderListView.cpp index 0e6cab7a1..44959000a 100644 --- a/src/openstudio_lib/ScriptFolderListView.cpp +++ b/src/openstudio_lib/ScriptFolderListView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScriptFolderListView.hpp b/src/openstudio_lib/ScriptFolderListView.hpp index 4bc5a8228..9775d0e35 100644 --- a/src/openstudio_lib/ScriptFolderListView.hpp +++ b/src/openstudio_lib/ScriptFolderListView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScriptItem.cpp b/src/openstudio_lib/ScriptItem.cpp index 9b3308372..bd9f45d0d 100644 --- a/src/openstudio_lib/ScriptItem.cpp +++ b/src/openstudio_lib/ScriptItem.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScriptItem.hpp b/src/openstudio_lib/ScriptItem.hpp index 92e990a5b..f4b920ffb 100644 --- a/src/openstudio_lib/ScriptItem.hpp +++ b/src/openstudio_lib/ScriptItem.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScriptsTabController.cpp b/src/openstudio_lib/ScriptsTabController.cpp index 91822268c..3ba5163c6 100644 --- a/src/openstudio_lib/ScriptsTabController.cpp +++ b/src/openstudio_lib/ScriptsTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScriptsTabController.hpp b/src/openstudio_lib/ScriptsTabController.hpp index 9c3fbc02f..f70ce7b75 100644 --- a/src/openstudio_lib/ScriptsTabController.hpp +++ b/src/openstudio_lib/ScriptsTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScriptsTabView.cpp b/src/openstudio_lib/ScriptsTabView.cpp index e185b0a58..b89453612 100644 --- a/src/openstudio_lib/ScriptsTabView.cpp +++ b/src/openstudio_lib/ScriptsTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ScriptsTabView.hpp b/src/openstudio_lib/ScriptsTabView.hpp index 391e2d395..afdc15947 100644 --- a/src/openstudio_lib/ScriptsTabView.hpp +++ b/src/openstudio_lib/ScriptsTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ServiceWaterGridItems.cpp b/src/openstudio_lib/ServiceWaterGridItems.cpp index 5aad9512a..9108f8473 100644 --- a/src/openstudio_lib/ServiceWaterGridItems.cpp +++ b/src/openstudio_lib/ServiceWaterGridItems.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ServiceWaterGridItems.hpp b/src/openstudio_lib/ServiceWaterGridItems.hpp index 17f551a91..353d16974 100644 --- a/src/openstudio_lib/ServiceWaterGridItems.hpp +++ b/src/openstudio_lib/ServiceWaterGridItems.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ServiceWaterScene.cpp b/src/openstudio_lib/ServiceWaterScene.cpp index 122330b48..9a7e7c526 100644 --- a/src/openstudio_lib/ServiceWaterScene.cpp +++ b/src/openstudio_lib/ServiceWaterScene.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ServiceWaterScene.hpp b/src/openstudio_lib/ServiceWaterScene.hpp index 84363bac0..a45bd39ab 100644 --- a/src/openstudio_lib/ServiceWaterScene.hpp +++ b/src/openstudio_lib/ServiceWaterScene.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SimSettingsTabController.cpp b/src/openstudio_lib/SimSettingsTabController.cpp index b8cb6c166..b605bb4a8 100644 --- a/src/openstudio_lib/SimSettingsTabController.cpp +++ b/src/openstudio_lib/SimSettingsTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SimSettingsTabController.hpp b/src/openstudio_lib/SimSettingsTabController.hpp index d6472b638..ecf66dc4a 100644 --- a/src/openstudio_lib/SimSettingsTabController.hpp +++ b/src/openstudio_lib/SimSettingsTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SimSettingsTabView.cpp b/src/openstudio_lib/SimSettingsTabView.cpp index d4ebb7c74..e4055bc96 100644 --- a/src/openstudio_lib/SimSettingsTabView.cpp +++ b/src/openstudio_lib/SimSettingsTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SimSettingsTabView.hpp b/src/openstudio_lib/SimSettingsTabView.hpp index 64887c9d5..5f5b25d1a 100644 --- a/src/openstudio_lib/SimSettingsTabView.hpp +++ b/src/openstudio_lib/SimSettingsTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SimSettingsView.cpp b/src/openstudio_lib/SimSettingsView.cpp index d67f3a303..e89a5526a 100644 --- a/src/openstudio_lib/SimSettingsView.cpp +++ b/src/openstudio_lib/SimSettingsView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SimSettingsView.hpp b/src/openstudio_lib/SimSettingsView.hpp index 8f42dd1f1..081906e1b 100644 --- a/src/openstudio_lib/SimSettingsView.hpp +++ b/src/openstudio_lib/SimSettingsView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceLoadInstancesWidget.cpp b/src/openstudio_lib/SpaceLoadInstancesWidget.cpp index 289b41db7..f6c3e79bd 100644 --- a/src/openstudio_lib/SpaceLoadInstancesWidget.cpp +++ b/src/openstudio_lib/SpaceLoadInstancesWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceLoadInstancesWidget.hpp b/src/openstudio_lib/SpaceLoadInstancesWidget.hpp index cb8b08f8f..6f701b88a 100644 --- a/src/openstudio_lib/SpaceLoadInstancesWidget.hpp +++ b/src/openstudio_lib/SpaceLoadInstancesWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypeInspectorView.cpp b/src/openstudio_lib/SpaceTypeInspectorView.cpp index 18ceb9d2c..87f97429c 100644 --- a/src/openstudio_lib/SpaceTypeInspectorView.cpp +++ b/src/openstudio_lib/SpaceTypeInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypeInspectorView.hpp b/src/openstudio_lib/SpaceTypeInspectorView.hpp index 097d2d6e8..7426ffc49 100644 --- a/src/openstudio_lib/SpaceTypeInspectorView.hpp +++ b/src/openstudio_lib/SpaceTypeInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesController.cpp b/src/openstudio_lib/SpaceTypesController.cpp index 708f6d53a..f7a3d7051 100644 --- a/src/openstudio_lib/SpaceTypesController.cpp +++ b/src/openstudio_lib/SpaceTypesController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesController.hpp b/src/openstudio_lib/SpaceTypesController.hpp index ef7ab4e3d..1b1f123e9 100644 --- a/src/openstudio_lib/SpaceTypesController.hpp +++ b/src/openstudio_lib/SpaceTypesController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesGridView.cpp b/src/openstudio_lib/SpaceTypesGridView.cpp index 2b0750fbf..73c4f18b7 100644 --- a/src/openstudio_lib/SpaceTypesGridView.cpp +++ b/src/openstudio_lib/SpaceTypesGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesGridView.hpp b/src/openstudio_lib/SpaceTypesGridView.hpp index 015f673ef..0d0224157 100644 --- a/src/openstudio_lib/SpaceTypesGridView.hpp +++ b/src/openstudio_lib/SpaceTypesGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesTabController.cpp b/src/openstudio_lib/SpaceTypesTabController.cpp index 9478304b6..b16d28eec 100644 --- a/src/openstudio_lib/SpaceTypesTabController.cpp +++ b/src/openstudio_lib/SpaceTypesTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesTabController.hpp b/src/openstudio_lib/SpaceTypesTabController.hpp index 82997c97d..f857987ff 100644 --- a/src/openstudio_lib/SpaceTypesTabController.hpp +++ b/src/openstudio_lib/SpaceTypesTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesTabView.cpp b/src/openstudio_lib/SpaceTypesTabView.cpp index 59b0a8a5a..001e7bc72 100644 --- a/src/openstudio_lib/SpaceTypesTabView.cpp +++ b/src/openstudio_lib/SpaceTypesTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesTabView.hpp b/src/openstudio_lib/SpaceTypesTabView.hpp index 9b9219465..3b63fc6b9 100644 --- a/src/openstudio_lib/SpaceTypesTabView.hpp +++ b/src/openstudio_lib/SpaceTypesTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesView.cpp b/src/openstudio_lib/SpaceTypesView.cpp index 517011898..741dae2a7 100644 --- a/src/openstudio_lib/SpaceTypesView.cpp +++ b/src/openstudio_lib/SpaceTypesView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpaceTypesView.hpp b/src/openstudio_lib/SpaceTypesView.hpp index c50958f03..c04ea3df7 100644 --- a/src/openstudio_lib/SpaceTypesView.hpp +++ b/src/openstudio_lib/SpaceTypesView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesDaylightingGridView.cpp b/src/openstudio_lib/SpacesDaylightingGridView.cpp index 8744df847..ca36c3bdd 100644 --- a/src/openstudio_lib/SpacesDaylightingGridView.cpp +++ b/src/openstudio_lib/SpacesDaylightingGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesDaylightingGridView.hpp b/src/openstudio_lib/SpacesDaylightingGridView.hpp index 7219dfc48..f8dbadcec 100644 --- a/src/openstudio_lib/SpacesDaylightingGridView.hpp +++ b/src/openstudio_lib/SpacesDaylightingGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesInteriorPartitionsGridView.cpp b/src/openstudio_lib/SpacesInteriorPartitionsGridView.cpp index 4586d3376..4831c2647 100644 --- a/src/openstudio_lib/SpacesInteriorPartitionsGridView.cpp +++ b/src/openstudio_lib/SpacesInteriorPartitionsGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesInteriorPartitionsGridView.hpp b/src/openstudio_lib/SpacesInteriorPartitionsGridView.hpp index 0697a226a..7cf59afef 100644 --- a/src/openstudio_lib/SpacesInteriorPartitionsGridView.hpp +++ b/src/openstudio_lib/SpacesInteriorPartitionsGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesLoadsGridView.cpp b/src/openstudio_lib/SpacesLoadsGridView.cpp index c20e349ed..b8379ae8a 100644 --- a/src/openstudio_lib/SpacesLoadsGridView.cpp +++ b/src/openstudio_lib/SpacesLoadsGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesLoadsGridView.hpp b/src/openstudio_lib/SpacesLoadsGridView.hpp index 43fead515..c8ecbec37 100644 --- a/src/openstudio_lib/SpacesLoadsGridView.hpp +++ b/src/openstudio_lib/SpacesLoadsGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesShadingGridView.cpp b/src/openstudio_lib/SpacesShadingGridView.cpp index 57007ed57..c546991fb 100644 --- a/src/openstudio_lib/SpacesShadingGridView.cpp +++ b/src/openstudio_lib/SpacesShadingGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesShadingGridView.hpp b/src/openstudio_lib/SpacesShadingGridView.hpp index 4e2bfb839..c5a3b4428 100644 --- a/src/openstudio_lib/SpacesShadingGridView.hpp +++ b/src/openstudio_lib/SpacesShadingGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesSpacesGridView.cpp b/src/openstudio_lib/SpacesSpacesGridView.cpp index a0ccb20ae..2ef098287 100644 --- a/src/openstudio_lib/SpacesSpacesGridView.cpp +++ b/src/openstudio_lib/SpacesSpacesGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesSpacesGridView.hpp b/src/openstudio_lib/SpacesSpacesGridView.hpp index 4cc98ebe9..460f055a5 100644 --- a/src/openstudio_lib/SpacesSpacesGridView.hpp +++ b/src/openstudio_lib/SpacesSpacesGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesSubsurfacesGridView.cpp b/src/openstudio_lib/SpacesSubsurfacesGridView.cpp index 64387f57d..e2c3b8b5d 100644 --- a/src/openstudio_lib/SpacesSubsurfacesGridView.cpp +++ b/src/openstudio_lib/SpacesSubsurfacesGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesSubsurfacesGridView.hpp b/src/openstudio_lib/SpacesSubsurfacesGridView.hpp index 3de4f038c..a261d6ecc 100644 --- a/src/openstudio_lib/SpacesSubsurfacesGridView.hpp +++ b/src/openstudio_lib/SpacesSubsurfacesGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesSubtabGridView.cpp b/src/openstudio_lib/SpacesSubtabGridView.cpp index 0b4e161d8..3c7be1aec 100644 --- a/src/openstudio_lib/SpacesSubtabGridView.cpp +++ b/src/openstudio_lib/SpacesSubtabGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesSubtabGridView.hpp b/src/openstudio_lib/SpacesSubtabGridView.hpp index 04df8fcb4..89eee2576 100644 --- a/src/openstudio_lib/SpacesSubtabGridView.hpp +++ b/src/openstudio_lib/SpacesSubtabGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesSurfacesGridView.cpp b/src/openstudio_lib/SpacesSurfacesGridView.cpp index 41dd99db9..f187fda70 100644 --- a/src/openstudio_lib/SpacesSurfacesGridView.cpp +++ b/src/openstudio_lib/SpacesSurfacesGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesSurfacesGridView.hpp b/src/openstudio_lib/SpacesSurfacesGridView.hpp index 1093a18fd..c512eb354 100644 --- a/src/openstudio_lib/SpacesSurfacesGridView.hpp +++ b/src/openstudio_lib/SpacesSurfacesGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesTabController.cpp b/src/openstudio_lib/SpacesTabController.cpp index c768e4b43..4833c45fb 100644 --- a/src/openstudio_lib/SpacesTabController.cpp +++ b/src/openstudio_lib/SpacesTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesTabController.hpp b/src/openstudio_lib/SpacesTabController.hpp index 01cdbb815..ac49cadd0 100644 --- a/src/openstudio_lib/SpacesTabController.hpp +++ b/src/openstudio_lib/SpacesTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesTabView.cpp b/src/openstudio_lib/SpacesTabView.cpp index 59c572884..e066e3732 100644 --- a/src/openstudio_lib/SpacesTabView.cpp +++ b/src/openstudio_lib/SpacesTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SpacesTabView.hpp b/src/openstudio_lib/SpacesTabView.hpp index 89a23a40f..bfd2f1f27 100644 --- a/src/openstudio_lib/SpacesTabView.hpp +++ b/src/openstudio_lib/SpacesTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/StandardOpaqueMaterialInspectorView.cpp b/src/openstudio_lib/StandardOpaqueMaterialInspectorView.cpp index b82db4a32..3fc536c81 100644 --- a/src/openstudio_lib/StandardOpaqueMaterialInspectorView.cpp +++ b/src/openstudio_lib/StandardOpaqueMaterialInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/StandardOpaqueMaterialInspectorView.hpp b/src/openstudio_lib/StandardOpaqueMaterialInspectorView.hpp index 66e617c4b..a401c6de6 100644 --- a/src/openstudio_lib/StandardOpaqueMaterialInspectorView.hpp +++ b/src/openstudio_lib/StandardOpaqueMaterialInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/StandardsInformationConstructionWidget.cpp b/src/openstudio_lib/StandardsInformationConstructionWidget.cpp index 09a007cfb..71ea20ea1 100644 --- a/src/openstudio_lib/StandardsInformationConstructionWidget.cpp +++ b/src/openstudio_lib/StandardsInformationConstructionWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/StandardsInformationConstructionWidget.hpp b/src/openstudio_lib/StandardsInformationConstructionWidget.hpp index c9bb88e6f..506d1f9f6 100644 --- a/src/openstudio_lib/StandardsInformationConstructionWidget.hpp +++ b/src/openstudio_lib/StandardsInformationConstructionWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/StandardsInformationMaterialWidget.cpp b/src/openstudio_lib/StandardsInformationMaterialWidget.cpp index d21905f1e..c440bdf24 100644 --- a/src/openstudio_lib/StandardsInformationMaterialWidget.cpp +++ b/src/openstudio_lib/StandardsInformationMaterialWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/StandardsInformationMaterialWidget.hpp b/src/openstudio_lib/StandardsInformationMaterialWidget.hpp index e0014cdb1..68ff18d7d 100644 --- a/src/openstudio_lib/StandardsInformationMaterialWidget.hpp +++ b/src/openstudio_lib/StandardsInformationMaterialWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SteamEquipmentInspectorView.cpp b/src/openstudio_lib/SteamEquipmentInspectorView.cpp index 26886dff7..2efc8221d 100644 --- a/src/openstudio_lib/SteamEquipmentInspectorView.cpp +++ b/src/openstudio_lib/SteamEquipmentInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SteamEquipmentInspectorView.hpp b/src/openstudio_lib/SteamEquipmentInspectorView.hpp index 2ab9e6763..bfc106a45 100644 --- a/src/openstudio_lib/SteamEquipmentInspectorView.hpp +++ b/src/openstudio_lib/SteamEquipmentInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SubTabController.cpp b/src/openstudio_lib/SubTabController.cpp index 7f20c3b81..26eea9393 100644 --- a/src/openstudio_lib/SubTabController.cpp +++ b/src/openstudio_lib/SubTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SubTabController.hpp b/src/openstudio_lib/SubTabController.hpp index 18f88a178..1d995dbf1 100644 --- a/src/openstudio_lib/SubTabController.hpp +++ b/src/openstudio_lib/SubTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SubTabView.cpp b/src/openstudio_lib/SubTabView.cpp index e9bc03d1a..67248f96f 100644 --- a/src/openstudio_lib/SubTabView.cpp +++ b/src/openstudio_lib/SubTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SubTabView.hpp b/src/openstudio_lib/SubTabView.hpp index 7a3d1a6c7..074a88e94 100644 --- a/src/openstudio_lib/SubTabView.hpp +++ b/src/openstudio_lib/SubTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SummaryTabController.cpp b/src/openstudio_lib/SummaryTabController.cpp index 43bd542e4..80b092ae1 100644 --- a/src/openstudio_lib/SummaryTabController.cpp +++ b/src/openstudio_lib/SummaryTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SummaryTabController.hpp b/src/openstudio_lib/SummaryTabController.hpp index 99be58c47..790dca085 100644 --- a/src/openstudio_lib/SummaryTabController.hpp +++ b/src/openstudio_lib/SummaryTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SummaryTabView.cpp b/src/openstudio_lib/SummaryTabView.cpp index d1d4b9ca8..567b5e735 100644 --- a/src/openstudio_lib/SummaryTabView.cpp +++ b/src/openstudio_lib/SummaryTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/SummaryTabView.hpp b/src/openstudio_lib/SummaryTabView.hpp index cd258acf2..0434ae97b 100644 --- a/src/openstudio_lib/SummaryTabView.hpp +++ b/src/openstudio_lib/SummaryTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesController.cpp b/src/openstudio_lib/ThermalZonesController.cpp index 5d3a686bf..a6a9ad7fa 100644 --- a/src/openstudio_lib/ThermalZonesController.cpp +++ b/src/openstudio_lib/ThermalZonesController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesController.hpp b/src/openstudio_lib/ThermalZonesController.hpp index fff189ead..f46a03667 100644 --- a/src/openstudio_lib/ThermalZonesController.hpp +++ b/src/openstudio_lib/ThermalZonesController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesGridView.cpp b/src/openstudio_lib/ThermalZonesGridView.cpp index 2d2300c2e..4aee5890f 100644 --- a/src/openstudio_lib/ThermalZonesGridView.cpp +++ b/src/openstudio_lib/ThermalZonesGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesGridView.hpp b/src/openstudio_lib/ThermalZonesGridView.hpp index e35d3a0db..cf5b729ca 100644 --- a/src/openstudio_lib/ThermalZonesGridView.hpp +++ b/src/openstudio_lib/ThermalZonesGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesTabController.cpp b/src/openstudio_lib/ThermalZonesTabController.cpp index 66aab0861..2e29d4630 100644 --- a/src/openstudio_lib/ThermalZonesTabController.cpp +++ b/src/openstudio_lib/ThermalZonesTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesTabController.hpp b/src/openstudio_lib/ThermalZonesTabController.hpp index 4e2751d38..bb7ebb255 100644 --- a/src/openstudio_lib/ThermalZonesTabController.hpp +++ b/src/openstudio_lib/ThermalZonesTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesTabView.cpp b/src/openstudio_lib/ThermalZonesTabView.cpp index d0daca8b3..eada63325 100644 --- a/src/openstudio_lib/ThermalZonesTabView.cpp +++ b/src/openstudio_lib/ThermalZonesTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesTabView.hpp b/src/openstudio_lib/ThermalZonesTabView.hpp index 51eadba01..4bec51f68 100644 --- a/src/openstudio_lib/ThermalZonesTabView.hpp +++ b/src/openstudio_lib/ThermalZonesTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesView.cpp b/src/openstudio_lib/ThermalZonesView.cpp index a6318d296..8d72d1464 100644 --- a/src/openstudio_lib/ThermalZonesView.cpp +++ b/src/openstudio_lib/ThermalZonesView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ThermalZonesView.hpp b/src/openstudio_lib/ThermalZonesView.hpp index c780a33ad..d69e01a2b 100644 --- a/src/openstudio_lib/ThermalZonesView.hpp +++ b/src/openstudio_lib/ThermalZonesView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillAllFuelTypesListView.cpp b/src/openstudio_lib/UtilityBillAllFuelTypesListView.cpp index 72dd25250..50643be6f 100644 --- a/src/openstudio_lib/UtilityBillAllFuelTypesListView.cpp +++ b/src/openstudio_lib/UtilityBillAllFuelTypesListView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillAllFuelTypesListView.hpp b/src/openstudio_lib/UtilityBillAllFuelTypesListView.hpp index 4fe7f6166..899a9e3b9 100644 --- a/src/openstudio_lib/UtilityBillAllFuelTypesListView.hpp +++ b/src/openstudio_lib/UtilityBillAllFuelTypesListView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillFuelTypeItem.cpp b/src/openstudio_lib/UtilityBillFuelTypeItem.cpp index 612620905..5ea269904 100644 --- a/src/openstudio_lib/UtilityBillFuelTypeItem.cpp +++ b/src/openstudio_lib/UtilityBillFuelTypeItem.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillFuelTypeItem.hpp b/src/openstudio_lib/UtilityBillFuelTypeItem.hpp index 88b808de9..9a9ced711 100644 --- a/src/openstudio_lib/UtilityBillFuelTypeItem.hpp +++ b/src/openstudio_lib/UtilityBillFuelTypeItem.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillFuelTypeListView.cpp b/src/openstudio_lib/UtilityBillFuelTypeListView.cpp index 5dc1d28ba..f6d7fdbd0 100644 --- a/src/openstudio_lib/UtilityBillFuelTypeListView.cpp +++ b/src/openstudio_lib/UtilityBillFuelTypeListView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillFuelTypeListView.hpp b/src/openstudio_lib/UtilityBillFuelTypeListView.hpp index 7d29960da..cfa09cdb8 100644 --- a/src/openstudio_lib/UtilityBillFuelTypeListView.hpp +++ b/src/openstudio_lib/UtilityBillFuelTypeListView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillsController.cpp b/src/openstudio_lib/UtilityBillsController.cpp index ecdca25bd..5367b977b 100644 --- a/src/openstudio_lib/UtilityBillsController.cpp +++ b/src/openstudio_lib/UtilityBillsController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillsController.hpp b/src/openstudio_lib/UtilityBillsController.hpp index 46d62de13..48fa56171 100644 --- a/src/openstudio_lib/UtilityBillsController.hpp +++ b/src/openstudio_lib/UtilityBillsController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillsView.cpp b/src/openstudio_lib/UtilityBillsView.cpp index e7f632b40..7d11df3db 100644 --- a/src/openstudio_lib/UtilityBillsView.cpp +++ b/src/openstudio_lib/UtilityBillsView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/UtilityBillsView.hpp b/src/openstudio_lib/UtilityBillsView.hpp index 1e1fe5613..680968d12 100644 --- a/src/openstudio_lib/UtilityBillsView.hpp +++ b/src/openstudio_lib/UtilityBillsView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VRFController.cpp b/src/openstudio_lib/VRFController.cpp index 85d326958..1c5a34ac0 100644 --- a/src/openstudio_lib/VRFController.cpp +++ b/src/openstudio_lib/VRFController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VRFController.hpp b/src/openstudio_lib/VRFController.hpp index b7f381aae..15b432b88 100644 --- a/src/openstudio_lib/VRFController.hpp +++ b/src/openstudio_lib/VRFController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VRFGraphicsItems.cpp b/src/openstudio_lib/VRFGraphicsItems.cpp index 36277ebaa..7d230532e 100644 --- a/src/openstudio_lib/VRFGraphicsItems.cpp +++ b/src/openstudio_lib/VRFGraphicsItems.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VRFGraphicsItems.hpp b/src/openstudio_lib/VRFGraphicsItems.hpp index 2ff186b64..d5e12264e 100644 --- a/src/openstudio_lib/VRFGraphicsItems.hpp +++ b/src/openstudio_lib/VRFGraphicsItems.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VariablesTabController.cpp b/src/openstudio_lib/VariablesTabController.cpp index 6d9ab3f5d..7ba3ff717 100644 --- a/src/openstudio_lib/VariablesTabController.cpp +++ b/src/openstudio_lib/VariablesTabController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VariablesTabController.hpp b/src/openstudio_lib/VariablesTabController.hpp index 4b6f17b40..0ff13074f 100644 --- a/src/openstudio_lib/VariablesTabController.hpp +++ b/src/openstudio_lib/VariablesTabController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VariablesTabView.cpp b/src/openstudio_lib/VariablesTabView.cpp index 6497b275e..0385b25cb 100644 --- a/src/openstudio_lib/VariablesTabView.cpp +++ b/src/openstudio_lib/VariablesTabView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VariablesTabView.hpp b/src/openstudio_lib/VariablesTabView.hpp index 7c4f6e77c..350920b16 100644 --- a/src/openstudio_lib/VariablesTabView.hpp +++ b/src/openstudio_lib/VariablesTabView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VerticalTabWidget.cpp b/src/openstudio_lib/VerticalTabWidget.cpp index 0e39bb5ec..0fb18a288 100644 --- a/src/openstudio_lib/VerticalTabWidget.cpp +++ b/src/openstudio_lib/VerticalTabWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/VerticalTabWidget.hpp b/src/openstudio_lib/VerticalTabWidget.hpp index c23c62ed2..2dbf57d7a 100644 --- a/src/openstudio_lib/VerticalTabWidget.hpp +++ b/src/openstudio_lib/VerticalTabWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WaterUseEquipmentInspectorView.cpp b/src/openstudio_lib/WaterUseEquipmentInspectorView.cpp index 07826c58d..a82e995e6 100644 --- a/src/openstudio_lib/WaterUseEquipmentInspectorView.cpp +++ b/src/openstudio_lib/WaterUseEquipmentInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WaterUseEquipmentInspectorView.hpp b/src/openstudio_lib/WaterUseEquipmentInspectorView.hpp index 3e6fd4116..f39f61637 100644 --- a/src/openstudio_lib/WaterUseEquipmentInspectorView.hpp +++ b/src/openstudio_lib/WaterUseEquipmentInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialBlindInspectorView.cpp b/src/openstudio_lib/WindowMaterialBlindInspectorView.cpp index 14a0f7062..71ae8a14b 100644 --- a/src/openstudio_lib/WindowMaterialBlindInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialBlindInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialBlindInspectorView.hpp b/src/openstudio_lib/WindowMaterialBlindInspectorView.hpp index fecf6a294..dadcdb5e8 100644 --- a/src/openstudio_lib/WindowMaterialBlindInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialBlindInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.cpp b/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.cpp index 53651aafe..c13fc2005 100644 --- a/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.hpp b/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.hpp index e6b389a6a..554f86977 100644 --- a/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGasInspectorView.cpp b/src/openstudio_lib/WindowMaterialGasInspectorView.cpp index 77e50360e..b2761a740 100644 --- a/src/openstudio_lib/WindowMaterialGasInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialGasInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGasInspectorView.hpp b/src/openstudio_lib/WindowMaterialGasInspectorView.hpp index 81cb68289..83a5435cb 100644 --- a/src/openstudio_lib/WindowMaterialGasInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialGasInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.cpp b/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.cpp index 9f4963de9..415bdf137 100644 --- a/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.hpp b/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.hpp index 1cc9eabee..c325c168b 100644 --- a/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.cpp b/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.cpp index 7aa15a3fe..7b1ed07c1 100644 --- a/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.hpp b/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.hpp index 6530ba231..dd81eeba9 100644 --- a/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGlazingInspectorView.cpp b/src/openstudio_lib/WindowMaterialGlazingInspectorView.cpp index 233ee55e8..2dee3c054 100644 --- a/src/openstudio_lib/WindowMaterialGlazingInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialGlazingInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGlazingInspectorView.hpp b/src/openstudio_lib/WindowMaterialGlazingInspectorView.hpp index 23dc415b5..3004c80a1 100644 --- a/src/openstudio_lib/WindowMaterialGlazingInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialGlazingInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.cpp b/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.cpp index b82584f5a..fc74f5d55 100644 --- a/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp b/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp index f6865e3c6..ba6f05047 100644 --- a/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp b/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp index 147204911..9da3dc6e5 100644 --- a/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialScreenInspectorView.hpp b/src/openstudio_lib/WindowMaterialScreenInspectorView.hpp index 7cfcc472d..319c2ac6d 100644 --- a/src/openstudio_lib/WindowMaterialScreenInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialScreenInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialShadeInspectorView.cpp b/src/openstudio_lib/WindowMaterialShadeInspectorView.cpp index 19ca2fdbc..fe9f82185 100644 --- a/src/openstudio_lib/WindowMaterialShadeInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialShadeInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialShadeInspectorView.hpp b/src/openstudio_lib/WindowMaterialShadeInspectorView.hpp index 316935e07..13adeb8c8 100644 --- a/src/openstudio_lib/WindowMaterialShadeInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialShadeInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.cpp b/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.cpp index 9cad17cf2..945edd11a 100644 --- a/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.cpp +++ b/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.hpp b/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.hpp index da7f4225d..ef1f528fa 100644 --- a/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.hpp +++ b/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/YearSettingsWidget.cpp b/src/openstudio_lib/YearSettingsWidget.cpp index 2ba78e9ac..00358c9c1 100644 --- a/src/openstudio_lib/YearSettingsWidget.cpp +++ b/src/openstudio_lib/YearSettingsWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/YearSettingsWidget.hpp b/src/openstudio_lib/YearSettingsWidget.hpp index 652ed11cd..f2635c790 100644 --- a/src/openstudio_lib/YearSettingsWidget.hpp +++ b/src/openstudio_lib/YearSettingsWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ZoneChooserView.cpp b/src/openstudio_lib/ZoneChooserView.cpp index 5ca03a0bc..60360c593 100644 --- a/src/openstudio_lib/ZoneChooserView.cpp +++ b/src/openstudio_lib/ZoneChooserView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/ZoneChooserView.hpp b/src/openstudio_lib/ZoneChooserView.hpp index 17f97a644..1cb3cff76 100644 --- a/src/openstudio_lib/ZoneChooserView.hpp +++ b/src/openstudio_lib/ZoneChooserView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/test/IconLibrary_GTest.cpp b/src/openstudio_lib/test/IconLibrary_GTest.cpp index f4476e04e..2531281c2 100644 --- a/src/openstudio_lib/test/IconLibrary_GTest.cpp +++ b/src/openstudio_lib/test/IconLibrary_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/test/OpenStudioLibFixture.cpp b/src/openstudio_lib/test/OpenStudioLibFixture.cpp index 093b7ab94..02d19a49a 100644 --- a/src/openstudio_lib/test/OpenStudioLibFixture.cpp +++ b/src/openstudio_lib/test/OpenStudioLibFixture.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/openstudio_lib/test/OpenStudioLibFixture.hpp b/src/openstudio_lib/test/OpenStudioLibFixture.hpp index a5f1002d9..8783d3ef4 100644 --- a/src/openstudio_lib/test/OpenStudioLibFixture.hpp +++ b/src/openstudio_lib/test/OpenStudioLibFixture.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/BCLMeasureDialog.cpp b/src/shared_gui_components/BCLMeasureDialog.cpp index b12aa0043..8d30ce2bc 100644 --- a/src/shared_gui_components/BCLMeasureDialog.cpp +++ b/src/shared_gui_components/BCLMeasureDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/BCLMeasureDialog.hpp b/src/shared_gui_components/BCLMeasureDialog.hpp index f5bd002a1..858b477dc 100644 --- a/src/shared_gui_components/BCLMeasureDialog.hpp +++ b/src/shared_gui_components/BCLMeasureDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/BaseApp.hpp b/src/shared_gui_components/BaseApp.hpp index 87be95869..588068227 100644 --- a/src/shared_gui_components/BaseApp.hpp +++ b/src/shared_gui_components/BaseApp.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/BuildingComponentDialog.cpp b/src/shared_gui_components/BuildingComponentDialog.cpp index 2e8516cef..659a6823a 100644 --- a/src/shared_gui_components/BuildingComponentDialog.cpp +++ b/src/shared_gui_components/BuildingComponentDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/BuildingComponentDialog.hpp b/src/shared_gui_components/BuildingComponentDialog.hpp index 85e0dcd51..3dee8da1e 100644 --- a/src/shared_gui_components/BuildingComponentDialog.hpp +++ b/src/shared_gui_components/BuildingComponentDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/BuildingComponentDialogCentralWidget.cpp b/src/shared_gui_components/BuildingComponentDialogCentralWidget.cpp index e94ab8060..8c529804a 100644 --- a/src/shared_gui_components/BuildingComponentDialogCentralWidget.cpp +++ b/src/shared_gui_components/BuildingComponentDialogCentralWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/BuildingComponentDialogCentralWidget.hpp b/src/shared_gui_components/BuildingComponentDialogCentralWidget.hpp index 8b7cab274..d51986e75 100644 --- a/src/shared_gui_components/BuildingComponentDialogCentralWidget.hpp +++ b/src/shared_gui_components/BuildingComponentDialogCentralWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/BusyWidget.cpp b/src/shared_gui_components/BusyWidget.cpp index b307451a9..e4346317c 100644 --- a/src/shared_gui_components/BusyWidget.cpp +++ b/src/shared_gui_components/BusyWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/BusyWidget.hpp b/src/shared_gui_components/BusyWidget.hpp index 0b446771f..19be515a7 100644 --- a/src/shared_gui_components/BusyWidget.hpp +++ b/src/shared_gui_components/BusyWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/Buttons.cpp b/src/shared_gui_components/Buttons.cpp index d0946fffc..e3b6af449 100644 --- a/src/shared_gui_components/Buttons.cpp +++ b/src/shared_gui_components/Buttons.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/Buttons.hpp b/src/shared_gui_components/Buttons.hpp index 213a5c14e..4e7ad80a8 100644 --- a/src/shared_gui_components/Buttons.hpp +++ b/src/shared_gui_components/Buttons.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/CollapsibleComponent.cpp b/src/shared_gui_components/CollapsibleComponent.cpp index 18a135219..87d411479 100644 --- a/src/shared_gui_components/CollapsibleComponent.cpp +++ b/src/shared_gui_components/CollapsibleComponent.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/CollapsibleComponent.hpp b/src/shared_gui_components/CollapsibleComponent.hpp index de910af32..265331f80 100644 --- a/src/shared_gui_components/CollapsibleComponent.hpp +++ b/src/shared_gui_components/CollapsibleComponent.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/CollapsibleComponentHeader.cpp b/src/shared_gui_components/CollapsibleComponentHeader.cpp index 38b2378da..9d805200c 100644 --- a/src/shared_gui_components/CollapsibleComponentHeader.cpp +++ b/src/shared_gui_components/CollapsibleComponentHeader.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/CollapsibleComponentHeader.hpp b/src/shared_gui_components/CollapsibleComponentHeader.hpp index cf8ccdb86..1f2a20076 100644 --- a/src/shared_gui_components/CollapsibleComponentHeader.hpp +++ b/src/shared_gui_components/CollapsibleComponentHeader.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/CollapsibleComponentList.cpp b/src/shared_gui_components/CollapsibleComponentList.cpp index c4a0d624f..7f13b0ebd 100644 --- a/src/shared_gui_components/CollapsibleComponentList.cpp +++ b/src/shared_gui_components/CollapsibleComponentList.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/CollapsibleComponentList.hpp b/src/shared_gui_components/CollapsibleComponentList.hpp index 0d3864e32..a1204b470 100644 --- a/src/shared_gui_components/CollapsibleComponentList.hpp +++ b/src/shared_gui_components/CollapsibleComponentList.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/Component.cpp b/src/shared_gui_components/Component.cpp index 4cd7b468d..d088d7e49 100644 --- a/src/shared_gui_components/Component.cpp +++ b/src/shared_gui_components/Component.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/Component.hpp b/src/shared_gui_components/Component.hpp index 1553cfcb9..8c1b1cc15 100644 --- a/src/shared_gui_components/Component.hpp +++ b/src/shared_gui_components/Component.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/ComponentList.cpp b/src/shared_gui_components/ComponentList.cpp index d92720c72..6d0469016 100644 --- a/src/shared_gui_components/ComponentList.cpp +++ b/src/shared_gui_components/ComponentList.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/ComponentList.hpp b/src/shared_gui_components/ComponentList.hpp index 5a6723f8f..ef6150a62 100644 --- a/src/shared_gui_components/ComponentList.hpp +++ b/src/shared_gui_components/ComponentList.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/EditController.cpp b/src/shared_gui_components/EditController.cpp index b912959f8..d6d914a08 100644 --- a/src/shared_gui_components/EditController.cpp +++ b/src/shared_gui_components/EditController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/EditController.hpp b/src/shared_gui_components/EditController.hpp index 146448775..2a56c40bd 100644 --- a/src/shared_gui_components/EditController.hpp +++ b/src/shared_gui_components/EditController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/EditView.cpp b/src/shared_gui_components/EditView.cpp index 1644e4a33..835843ecc 100644 --- a/src/shared_gui_components/EditView.cpp +++ b/src/shared_gui_components/EditView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/EditView.hpp b/src/shared_gui_components/EditView.hpp index c00eeecb0..eb55c309a 100644 --- a/src/shared_gui_components/EditView.hpp +++ b/src/shared_gui_components/EditView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/FieldMethodTypedefs.hpp b/src/shared_gui_components/FieldMethodTypedefs.hpp index 16dc6af0b..2359b9206 100644 --- a/src/shared_gui_components/FieldMethodTypedefs.hpp +++ b/src/shared_gui_components/FieldMethodTypedefs.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/GraphicsItems.cpp b/src/shared_gui_components/GraphicsItems.cpp index a654c29ed..38757a50b 100644 --- a/src/shared_gui_components/GraphicsItems.cpp +++ b/src/shared_gui_components/GraphicsItems.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/GraphicsItems.hpp b/src/shared_gui_components/GraphicsItems.hpp index 698ee2e15..7359a3662 100644 --- a/src/shared_gui_components/GraphicsItems.hpp +++ b/src/shared_gui_components/GraphicsItems.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/HeaderViews.cpp b/src/shared_gui_components/HeaderViews.cpp index 453d1f1a1..18d748152 100644 --- a/src/shared_gui_components/HeaderViews.cpp +++ b/src/shared_gui_components/HeaderViews.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/HeaderViews.hpp b/src/shared_gui_components/HeaderViews.hpp index 64ab79699..a1b13707e 100644 --- a/src/shared_gui_components/HeaderViews.hpp +++ b/src/shared_gui_components/HeaderViews.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/LocalLibrary.hpp b/src/shared_gui_components/LocalLibrary.hpp index 231697af9..c6eb7032d 100644 --- a/src/shared_gui_components/LocalLibrary.hpp +++ b/src/shared_gui_components/LocalLibrary.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/LocalLibraryController.cpp b/src/shared_gui_components/LocalLibraryController.cpp index 174a0418d..fdf35b600 100644 --- a/src/shared_gui_components/LocalLibraryController.cpp +++ b/src/shared_gui_components/LocalLibraryController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/LocalLibraryController.hpp b/src/shared_gui_components/LocalLibraryController.hpp index b08386fc7..711c2769e 100644 --- a/src/shared_gui_components/LocalLibraryController.hpp +++ b/src/shared_gui_components/LocalLibraryController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/LocalLibraryView.cpp b/src/shared_gui_components/LocalLibraryView.cpp index f1c96820d..e0984f7f1 100644 --- a/src/shared_gui_components/LocalLibraryView.cpp +++ b/src/shared_gui_components/LocalLibraryView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/LocalLibraryView.hpp b/src/shared_gui_components/LocalLibraryView.hpp index 6aeed6315..0895bc7f1 100644 --- a/src/shared_gui_components/LocalLibraryView.hpp +++ b/src/shared_gui_components/LocalLibraryView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/LostCloudConnectionDialog.cpp b/src/shared_gui_components/LostCloudConnectionDialog.cpp index baffa6646..4d4db8000 100644 --- a/src/shared_gui_components/LostCloudConnectionDialog.cpp +++ b/src/shared_gui_components/LostCloudConnectionDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/LostCloudConnectionDialog.hpp b/src/shared_gui_components/LostCloudConnectionDialog.hpp index 6af2eeadf..0b5725b3c 100644 --- a/src/shared_gui_components/LostCloudConnectionDialog.hpp +++ b/src/shared_gui_components/LostCloudConnectionDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/MeasureBadge.cpp b/src/shared_gui_components/MeasureBadge.cpp index a9aabb5cc..899dd1496 100644 --- a/src/shared_gui_components/MeasureBadge.cpp +++ b/src/shared_gui_components/MeasureBadge.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/MeasureBadge.hpp b/src/shared_gui_components/MeasureBadge.hpp index 5fac08d5f..4a80e5274 100644 --- a/src/shared_gui_components/MeasureBadge.hpp +++ b/src/shared_gui_components/MeasureBadge.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/MeasureDragData.cpp b/src/shared_gui_components/MeasureDragData.cpp index 4f8b6caee..0ad77180d 100644 --- a/src/shared_gui_components/MeasureDragData.cpp +++ b/src/shared_gui_components/MeasureDragData.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/MeasureDragData.hpp b/src/shared_gui_components/MeasureDragData.hpp index dbcb63a93..13fa62e5a 100644 --- a/src/shared_gui_components/MeasureDragData.hpp +++ b/src/shared_gui_components/MeasureDragData.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/MeasureManager.cpp b/src/shared_gui_components/MeasureManager.cpp index 9249147d1..478e18716 100644 --- a/src/shared_gui_components/MeasureManager.cpp +++ b/src/shared_gui_components/MeasureManager.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/MeasureManager.hpp b/src/shared_gui_components/MeasureManager.hpp index 3a424f20f..4250a6c6d 100644 --- a/src/shared_gui_components/MeasureManager.hpp +++ b/src/shared_gui_components/MeasureManager.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/NetworkProxyDialog.cpp b/src/shared_gui_components/NetworkProxyDialog.cpp index 964c6a8cd..486f0b9a0 100644 --- a/src/shared_gui_components/NetworkProxyDialog.cpp +++ b/src/shared_gui_components/NetworkProxyDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/NetworkProxyDialog.hpp b/src/shared_gui_components/NetworkProxyDialog.hpp index 2fa81478f..c22f8db81 100644 --- a/src/shared_gui_components/NetworkProxyDialog.hpp +++ b/src/shared_gui_components/NetworkProxyDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSCheckBox.cpp b/src/shared_gui_components/OSCheckBox.cpp index f977d3e1f..225166720 100644 --- a/src/shared_gui_components/OSCheckBox.cpp +++ b/src/shared_gui_components/OSCheckBox.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSCheckBox.hpp b/src/shared_gui_components/OSCheckBox.hpp index 3954b28d1..afc04399d 100644 --- a/src/shared_gui_components/OSCheckBox.hpp +++ b/src/shared_gui_components/OSCheckBox.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSCollapsibleView.cpp b/src/shared_gui_components/OSCollapsibleView.cpp index f3ae9802b..8549b482f 100644 --- a/src/shared_gui_components/OSCollapsibleView.cpp +++ b/src/shared_gui_components/OSCollapsibleView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSCollapsibleView.hpp b/src/shared_gui_components/OSCollapsibleView.hpp index 07c4aaef4..fff519b02 100644 --- a/src/shared_gui_components/OSCollapsibleView.hpp +++ b/src/shared_gui_components/OSCollapsibleView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSComboBox.cpp b/src/shared_gui_components/OSComboBox.cpp index c553abba5..cc4e6a3e7 100644 --- a/src/shared_gui_components/OSComboBox.cpp +++ b/src/shared_gui_components/OSComboBox.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSComboBox.hpp b/src/shared_gui_components/OSComboBox.hpp index d2d71702a..a56fe20e3 100644 --- a/src/shared_gui_components/OSComboBox.hpp +++ b/src/shared_gui_components/OSComboBox.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSConcepts.hpp b/src/shared_gui_components/OSConcepts.hpp index ad46e33b0..f998ea28b 100644 --- a/src/shared_gui_components/OSConcepts.hpp +++ b/src/shared_gui_components/OSConcepts.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSDialog.cpp b/src/shared_gui_components/OSDialog.cpp index 7df3f7892..ab7462611 100644 --- a/src/shared_gui_components/OSDialog.cpp +++ b/src/shared_gui_components/OSDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSDialog.hpp b/src/shared_gui_components/OSDialog.hpp index 4560c69d1..f26a944c2 100644 --- a/src/shared_gui_components/OSDialog.hpp +++ b/src/shared_gui_components/OSDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSDoubleEdit.cpp b/src/shared_gui_components/OSDoubleEdit.cpp index 453af2b60..f52a1ce16 100644 --- a/src/shared_gui_components/OSDoubleEdit.cpp +++ b/src/shared_gui_components/OSDoubleEdit.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSDoubleEdit.hpp b/src/shared_gui_components/OSDoubleEdit.hpp index b984cb9e9..38de253ec 100644 --- a/src/shared_gui_components/OSDoubleEdit.hpp +++ b/src/shared_gui_components/OSDoubleEdit.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSDragableView.cpp b/src/shared_gui_components/OSDragableView.cpp index a5c0f9e6a..fc190a521 100644 --- a/src/shared_gui_components/OSDragableView.cpp +++ b/src/shared_gui_components/OSDragableView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSDragableView.hpp b/src/shared_gui_components/OSDragableView.hpp index 77141fa86..e299e66bf 100644 --- a/src/shared_gui_components/OSDragableView.hpp +++ b/src/shared_gui_components/OSDragableView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSGridController.cpp b/src/shared_gui_components/OSGridController.cpp index bb07390fc..12a6256a2 100644 --- a/src/shared_gui_components/OSGridController.cpp +++ b/src/shared_gui_components/OSGridController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSGridController.hpp b/src/shared_gui_components/OSGridController.hpp index ffc4c74cd..a82be4ce5 100644 --- a/src/shared_gui_components/OSGridController.hpp +++ b/src/shared_gui_components/OSGridController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSGridView.cpp b/src/shared_gui_components/OSGridView.cpp index 9c77b7f65..750fc97d3 100644 --- a/src/shared_gui_components/OSGridView.cpp +++ b/src/shared_gui_components/OSGridView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSGridView.hpp b/src/shared_gui_components/OSGridView.hpp index 97494d321..5e76da143 100644 --- a/src/shared_gui_components/OSGridView.hpp +++ b/src/shared_gui_components/OSGridView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSIntegerEdit.cpp b/src/shared_gui_components/OSIntegerEdit.cpp index 47a55c097..12070792f 100644 --- a/src/shared_gui_components/OSIntegerEdit.cpp +++ b/src/shared_gui_components/OSIntegerEdit.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSIntegerEdit.hpp b/src/shared_gui_components/OSIntegerEdit.hpp index 4827d5251..23cbcadfb 100644 --- a/src/shared_gui_components/OSIntegerEdit.hpp +++ b/src/shared_gui_components/OSIntegerEdit.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSLineEdit.cpp b/src/shared_gui_components/OSLineEdit.cpp index 9583468d7..0fd38b35e 100644 --- a/src/shared_gui_components/OSLineEdit.cpp +++ b/src/shared_gui_components/OSLineEdit.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSLineEdit.hpp b/src/shared_gui_components/OSLineEdit.hpp index aa474ba26..46ed96515 100644 --- a/src/shared_gui_components/OSLineEdit.hpp +++ b/src/shared_gui_components/OSLineEdit.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSListController.cpp b/src/shared_gui_components/OSListController.cpp index ec3b7242f..c5d16d17d 100644 --- a/src/shared_gui_components/OSListController.cpp +++ b/src/shared_gui_components/OSListController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSListController.hpp b/src/shared_gui_components/OSListController.hpp index 3f3ebbcfb..083d09d86 100644 --- a/src/shared_gui_components/OSListController.hpp +++ b/src/shared_gui_components/OSListController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSListView.cpp b/src/shared_gui_components/OSListView.cpp index 4185a4a5f..d94219152 100644 --- a/src/shared_gui_components/OSListView.cpp +++ b/src/shared_gui_components/OSListView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSListView.hpp b/src/shared_gui_components/OSListView.hpp index 641f05313..4420fa7a2 100644 --- a/src/shared_gui_components/OSListView.hpp +++ b/src/shared_gui_components/OSListView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSLoadNamePixmapLineEdit.cpp b/src/shared_gui_components/OSLoadNamePixmapLineEdit.cpp index c5e751daf..97b0e5868 100644 --- a/src/shared_gui_components/OSLoadNamePixmapLineEdit.cpp +++ b/src/shared_gui_components/OSLoadNamePixmapLineEdit.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSLoadNamePixmapLineEdit.hpp b/src/shared_gui_components/OSLoadNamePixmapLineEdit.hpp index e27108e9c..d7c9f18cb 100644 --- a/src/shared_gui_components/OSLoadNamePixmapLineEdit.hpp +++ b/src/shared_gui_components/OSLoadNamePixmapLineEdit.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSQObjectController.cpp b/src/shared_gui_components/OSQObjectController.cpp index 7092ced1c..8069e3382 100644 --- a/src/shared_gui_components/OSQObjectController.cpp +++ b/src/shared_gui_components/OSQObjectController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSQObjectController.hpp b/src/shared_gui_components/OSQObjectController.hpp index 1e801646b..c86d90c96 100644 --- a/src/shared_gui_components/OSQObjectController.hpp +++ b/src/shared_gui_components/OSQObjectController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSQuantityEdit.cpp b/src/shared_gui_components/OSQuantityEdit.cpp index c651c6c02..d0d40aa4e 100644 --- a/src/shared_gui_components/OSQuantityEdit.cpp +++ b/src/shared_gui_components/OSQuantityEdit.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSQuantityEdit.hpp b/src/shared_gui_components/OSQuantityEdit.hpp index 086b2539f..dc3d1a4d5 100644 --- a/src/shared_gui_components/OSQuantityEdit.hpp +++ b/src/shared_gui_components/OSQuantityEdit.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSSwitch.cpp b/src/shared_gui_components/OSSwitch.cpp index bb1447fe4..943875cf0 100644 --- a/src/shared_gui_components/OSSwitch.cpp +++ b/src/shared_gui_components/OSSwitch.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSSwitch.hpp b/src/shared_gui_components/OSSwitch.hpp index e60c33e46..f2f5f2331 100644 --- a/src/shared_gui_components/OSSwitch.hpp +++ b/src/shared_gui_components/OSSwitch.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSUnsignedEdit.cpp b/src/shared_gui_components/OSUnsignedEdit.cpp index 44f92b73c..56a511c7c 100644 --- a/src/shared_gui_components/OSUnsignedEdit.cpp +++ b/src/shared_gui_components/OSUnsignedEdit.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSUnsignedEdit.hpp b/src/shared_gui_components/OSUnsignedEdit.hpp index 64db8b949..500f7dc4f 100644 --- a/src/shared_gui_components/OSUnsignedEdit.hpp +++ b/src/shared_gui_components/OSUnsignedEdit.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSViewSwitcher.cpp b/src/shared_gui_components/OSViewSwitcher.cpp index 36c8c72a7..d8504158f 100644 --- a/src/shared_gui_components/OSViewSwitcher.cpp +++ b/src/shared_gui_components/OSViewSwitcher.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/OSViewSwitcher.hpp b/src/shared_gui_components/OSViewSwitcher.hpp index 73089c0a6..104cb9a5d 100644 --- a/src/shared_gui_components/OSViewSwitcher.hpp +++ b/src/shared_gui_components/OSViewSwitcher.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/PageNavigator.cpp b/src/shared_gui_components/PageNavigator.cpp index 6129bd0d1..661fa4766 100644 --- a/src/shared_gui_components/PageNavigator.cpp +++ b/src/shared_gui_components/PageNavigator.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/PageNavigator.hpp b/src/shared_gui_components/PageNavigator.hpp index 11a568263..dd391a700 100644 --- a/src/shared_gui_components/PageNavigator.hpp +++ b/src/shared_gui_components/PageNavigator.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/ProcessEventsProgressBar.cpp b/src/shared_gui_components/ProcessEventsProgressBar.cpp index 2ec82a9ee..9ab760ddb 100644 --- a/src/shared_gui_components/ProcessEventsProgressBar.cpp +++ b/src/shared_gui_components/ProcessEventsProgressBar.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/ProcessEventsProgressBar.hpp b/src/shared_gui_components/ProcessEventsProgressBar.hpp index 7c078c3b4..ba9d254ad 100644 --- a/src/shared_gui_components/ProcessEventsProgressBar.hpp +++ b/src/shared_gui_components/ProcessEventsProgressBar.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/SyncMeasuresDialog.cpp b/src/shared_gui_components/SyncMeasuresDialog.cpp index f244ad7b1..f2feac50d 100644 --- a/src/shared_gui_components/SyncMeasuresDialog.cpp +++ b/src/shared_gui_components/SyncMeasuresDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/SyncMeasuresDialog.hpp b/src/shared_gui_components/SyncMeasuresDialog.hpp index fcf6c82a6..ba59f8809 100644 --- a/src/shared_gui_components/SyncMeasuresDialog.hpp +++ b/src/shared_gui_components/SyncMeasuresDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/SyncMeasuresDialogCentralWidget.cpp b/src/shared_gui_components/SyncMeasuresDialogCentralWidget.cpp index f78f76760..82ccd3b3c 100644 --- a/src/shared_gui_components/SyncMeasuresDialogCentralWidget.cpp +++ b/src/shared_gui_components/SyncMeasuresDialogCentralWidget.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/SyncMeasuresDialogCentralWidget.hpp b/src/shared_gui_components/SyncMeasuresDialogCentralWidget.hpp index 51a2eb3bb..46c0d1cd7 100644 --- a/src/shared_gui_components/SyncMeasuresDialogCentralWidget.hpp +++ b/src/shared_gui_components/SyncMeasuresDialogCentralWidget.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/TIDItemModel.cpp b/src/shared_gui_components/TIDItemModel.cpp index 66ff48ab2..491b19c74 100644 --- a/src/shared_gui_components/TIDItemModel.cpp +++ b/src/shared_gui_components/TIDItemModel.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/TIDItemModel.hpp b/src/shared_gui_components/TIDItemModel.hpp index 143a8938e..a46aeed65 100644 --- a/src/shared_gui_components/TIDItemModel.hpp +++ b/src/shared_gui_components/TIDItemModel.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/TextEditDialog.cpp b/src/shared_gui_components/TextEditDialog.cpp index 5315ffd0f..9ed338c7b 100644 --- a/src/shared_gui_components/TextEditDialog.cpp +++ b/src/shared_gui_components/TextEditDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/TextEditDialog.hpp b/src/shared_gui_components/TextEditDialog.hpp index 46d5779a4..ccac29dcd 100644 --- a/src/shared_gui_components/TextEditDialog.hpp +++ b/src/shared_gui_components/TextEditDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/WaitDialog.cpp b/src/shared_gui_components/WaitDialog.cpp index 64a1d7588..cc967cb52 100644 --- a/src/shared_gui_components/WaitDialog.cpp +++ b/src/shared_gui_components/WaitDialog.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/WaitDialog.hpp b/src/shared_gui_components/WaitDialog.hpp index 0b876dc25..cf3432248 100644 --- a/src/shared_gui_components/WaitDialog.hpp +++ b/src/shared_gui_components/WaitDialog.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/WorkflowController.cpp b/src/shared_gui_components/WorkflowController.cpp index 50add643c..e322f7a2c 100644 --- a/src/shared_gui_components/WorkflowController.cpp +++ b/src/shared_gui_components/WorkflowController.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/WorkflowController.hpp b/src/shared_gui_components/WorkflowController.hpp index feb3f4b68..7c64b8511 100644 --- a/src/shared_gui_components/WorkflowController.hpp +++ b/src/shared_gui_components/WorkflowController.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/WorkflowTools.cpp b/src/shared_gui_components/WorkflowTools.cpp index 61a80a6bb..20f2fa15a 100644 --- a/src/shared_gui_components/WorkflowTools.cpp +++ b/src/shared_gui_components/WorkflowTools.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/WorkflowTools.hpp b/src/shared_gui_components/WorkflowTools.hpp index 1d89c431b..33000733b 100644 --- a/src/shared_gui_components/WorkflowTools.hpp +++ b/src/shared_gui_components/WorkflowTools.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/WorkflowView.cpp b/src/shared_gui_components/WorkflowView.cpp index 6070c3679..0fe76dab1 100644 --- a/src/shared_gui_components/WorkflowView.cpp +++ b/src/shared_gui_components/WorkflowView.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/shared_gui_components/WorkflowView.hpp b/src/shared_gui_components/WorkflowView.hpp index 131e6cebd..16677a582 100644 --- a/src/shared_gui_components/WorkflowView.hpp +++ b/src/shared_gui_components/WorkflowView.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/utilities/OpenStudioApplicationPathHelpers.cxx.in b/src/utilities/OpenStudioApplicationPathHelpers.cxx.in index 9907bbde8..af66c94aa 100644 --- a/src/utilities/OpenStudioApplicationPathHelpers.cxx.in +++ b/src/utilities/OpenStudioApplicationPathHelpers.cxx.in @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/utilities/OpenStudioApplicationPathHelpers.hpp b/src/utilities/OpenStudioApplicationPathHelpers.hpp index cb765b796..3d350d84e 100644 --- a/src/utilities/OpenStudioApplicationPathHelpers.hpp +++ b/src/utilities/OpenStudioApplicationPathHelpers.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/utilities/OpenStudioApplicationUtilitiesAPI.hpp b/src/utilities/OpenStudioApplicationUtilitiesAPI.hpp index 124d1b954..1045224a4 100644 --- a/src/utilities/OpenStudioApplicationUtilitiesAPI.hpp +++ b/src/utilities/OpenStudioApplicationUtilitiesAPI.hpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: diff --git a/src/utilities/test/OpenStudioApplicationPathHelpers_GTest.cpp b/src/utilities/test/OpenStudioApplicationPathHelpers_GTest.cpp index 0f4ab0a43..ecff72761 100644 --- a/src/utilities/test/OpenStudioApplicationPathHelpers_GTest.cpp +++ b/src/utilities/test/OpenStudioApplicationPathHelpers_GTest.cpp @@ -1,5 +1,5 @@ /*********************************************************************************************************************** -* OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +* OpenStudio(R), Copyright (c) 2020-2020, OpenStudio Coalition and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the * following conditions are met: From 549a73e391e084e1cd68722a95e27affa10409a8 Mon Sep 17 00:00:00 2001 From: XXX Date: Fri, 23 Oct 2020 15:42:52 -0600 Subject: [PATCH 09/11] Update Alliance copyright to 2020 --- LICENSE-Alliance-For-Sustainable-Energy-Before-Before-8-2020.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE-Alliance-For-Sustainable-Energy-Before-Before-8-2020.md b/LICENSE-Alliance-For-Sustainable-Energy-Before-Before-8-2020.md index 0369a51a4..96cd7c33b 100644 --- a/LICENSE-Alliance-For-Sustainable-Energy-Before-Before-8-2020.md +++ b/LICENSE-Alliance-For-Sustainable-Energy-Before-Before-8-2020.md @@ -1,4 +1,4 @@ -OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. +OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: From efe11c71d1c085501ae58df4d253d7cc663c60e4 Mon Sep 17 00:00:00 2001 From: XXX Date: Fri, 23 Oct 2020 16:43:54 -0600 Subject: [PATCH 10/11] Add openstudio.net link to about box --- src/openstudio_app/AboutBox.hpp.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openstudio_app/AboutBox.hpp.in b/src/openstudio_app/AboutBox.hpp.in index ea8c487ac..c9b88f448 100644 --- a/src/openstudio_app/AboutBox.hpp.in +++ b/src/openstudio_app/AboutBox.hpp.in @@ -4,7 +4,7 @@ "

OpenStudio Application

\

Version: ${OPENSTUDIOAPPLICATION_LONG_VERSION}

\

Compiler: ${ABOUT_COMPILER}

\ -

openstudio SDK (core) version: ${openstudio_VERSION}

\ +

OpenStudio SDK (core) version: ${openstudio_VERSION}

\

Copyright © 2020-2020, OpenStudio Coalition and other contributors. All rights reserved.

\

OpenStudio is a cross-platform tool to support whole building energy and daylight modeling using EnergyPlus and Radiance.

\

OpenStudio uses the following QT modules (version 5.15.0) that are dynamically linked using GNU Lesser General Public License (LGPL): \ From b0120763435f5d3c2474c2f665641adc5b0c4592 Mon Sep 17 00:00:00 2001 From: XXX Date: Fri, 23 Oct 2020 16:44:56 -0600 Subject: [PATCH 11/11] Apply clang format --- .../OpenStudioApplicationPathHelpers.cxx.in | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/src/utilities/OpenStudioApplicationPathHelpers.cxx.in b/src/utilities/OpenStudioApplicationPathHelpers.cxx.in index af66c94aa..509b880b8 100644 --- a/src/utilities/OpenStudioApplicationPathHelpers.cxx.in +++ b/src/utilities/OpenStudioApplicationPathHelpers.cxx.in @@ -50,8 +50,7 @@ namespace openstudio { // Return the version in MAJOR.MINOR.PATCH format (eg '3.0.0') -std::string openStudioApplicationVersion() -{ +std::string openStudioApplicationVersion() { return "${OPENSTUDIOAPPLICATION_VERSION}"; } @@ -65,28 +64,23 @@ std::string openStudioApplicationLongVersion() { return "${OPENSTUDIOAPPLICATION_LONG_VERSION}"; } -std::string OpenStudioApplicationVersionMajor() -{ +std::string OpenStudioApplicationVersionMajor() { return "${PROJECT_VERSION_MAJOR}"; } -std::string OpenStudioApplicationVersionMinor() -{ +std::string OpenStudioApplicationVersionMinor() { return "${PROJECT_VERSION_MINOR}"; } -std::string OpenStudioApplicationVersionPatch() -{ +std::string OpenStudioApplicationVersionPatch() { return "${PROJECT_VERSION_PATCH}"; } -std::string OpenStudioApplicationVersionPrerelease() -{ +std::string OpenStudioApplicationVersionPrerelease() { return "${PROJECT_VERSION_PRERELEASE}"; } -std::string OpenStudioApplicationVersionBuildSHA() -{ +std::string OpenStudioApplicationVersionBuildSHA() { return "${PROJECT_VERSION_BUILD}"; }