diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs
index 74a074e8f..c254ef74a 100644
--- a/.git-blame-ignore-revs
+++ b/.git-blame-ignore-revs
@@ -280,3 +280,6 @@ c25573f81282ad7aa0eb72ac24e31c57308cb038
# [chore] Bump copyright to 2023 + about box [Julien Marrec, 2023-03-30]
917bcb5e6576379fe6babb44f46a7f964ef581c6
+
+# [chore] Apply short-style copyright, hopefully for the last time [Julien Marrec, 2024-09-04]
+c8c0ff69b8d8e96661d2e5f7384816c09ab3d5ad
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1cc5942df..d6765a89d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -524,6 +524,7 @@ set(QT_INSTALL_DIR "" CACHE PATH "Path to Qt Install")
set(QT_VERSION "6.5.2" CACHE STRING "Qt target version, defaults to 6.5.2")
# For AboutBox, but also validates that the version is valid
+string(TIMESTAMP CURRENT_YEAR "%Y")
string(REGEX MATCH "^([0-9]+\\.[0-9]+)"
QT_VERSION_MAJOR_MINOR ${QT_VERSION})
if(NOT QT_VERSION_MAJOR_MINOR)
diff --git a/LICENSE.md b/LICENSE.md
index 819812cce..b4939904b 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,4 +1,4 @@
-OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. All rights reserved.
+OpenStudio(R), Copyright (c) 2020-2024, OpenStudio Coalition and other contributors. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
following conditions are met:
diff --git a/developer/ruby/ApplyCopyright.rb b/developer/ruby/ApplyCopyright.rb
index e653a8989..67ca36e57 100644
--- a/developer/ruby/ApplyCopyright.rb
+++ b/developer/ruby/ApplyCopyright.rb
@@ -3,32 +3,28 @@
# Inputs:
# ARGV[0] - path to top level cmake source directory (one level above 'src' directory)
-require 'pathname'
-require 'rubygems'
require 'fileutils'
+require 'pathname'
include FileUtils
-# check that called from command line directly
-if not ($0 == __FILE__)
- puts "#{__FILE__} called from external script"
- exit
-end
+ROOT_DIR = Pathname.new(__dir__).parent.parent
-basepath = ARGV[0].gsub("\\", "/")
+license_lines = [
+ "OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.\n",
+ "See also https://openstudiocoalition.org/about/software_license/\n",
+]
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
+license_lines.each do |line|
+ if line.strip.empty?
+ copyright += '*' + line
+ ruby_copyright += '#' + line
+
+ else
+ copyright += '* ' + line
+ ruby_copyright += '# ' + line
end
end
copyright += "***********************************************************************************************************************/\n\n"
@@ -36,107 +32,57 @@
# first do c++
-# exceptions are files that are not part of OpenStudio
-exceptions = [basepath + "/src/qtwinmigrate/",
- "mainpage.hpp"]
+# exclusions are files that are not part of OpenStudio
+folder_exclusions = [
+ ROOT_DIR / 'src/qtwinmigrate',
+]
+filename_exclusions = [
+ '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")
+files = ROOT_DIR.glob('src/**/*.[ch]pp')
+files += ROOT_DIR.glob('ruby/**/*.[ch]pp')
+files += ROOT_DIR.glob('src/**/*.[ch]xx.in')
+files += ROOT_DIR.glob('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
+ filename_exclusions.any? { |fname| p.basename.to_s == fname } ||
+ p.ascend { |path| break true if folder_exclusions.any? { |p2| path == p2 } }
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
+ # Read lines and remove copyright
+ lines = p.readlines
+ lines.shift(lines.find_index { |line| !(line.chomp.empty? || %r{^\s?[/*]}.match(line)) })
# write file
- File.open(p, "w") do |file|
- file << text
- end
-
+ p.write(copyright + lines.join)
end
# now do ruby
# exceptions are files that are not part of OpenStudio
-exceptions = []
+folder_exclusions = []
+filename_exclusions = []
# glob for rb
-files = Dir.glob(basepath + "/ruby/**/*.rb")
+files = ROOT_DIR.glob('ruby/**/*.rb')
# reject exceptions
files.reject! do |p|
- result = false
- exceptions.each do |e|
- if p.include?(e)
- result = true
- break
- end
- end
- result
+ filename_exclusions.any? { |fname| p.basename.to_s == fname } ||
+ p.ascend { |path| break true if folder_exclusions.any? { |p2| path == p2 } }
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
+ # Read lines and remove copyright
+ lines = p.readlines
+ lines.shift(lines.find_index { |line| !(line.chomp.empty? || /^#/.match(line)) })
# write file
- File.open(p, "w") do |file|
- file << text
- end
-
+ p.write(ruby_copyright + lines.join)
end
diff --git a/ruby/RubyAPI.hpp b/ruby/RubyAPI.hpp
index 08e17156d..907855bd1 100644
--- a/ruby/RubyAPI.hpp
+++ b/ruby/RubyAPI.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef RUBYAPI_HPP
diff --git a/ruby/openstudio_modeleditor.rb b/ruby/openstudio_modeleditor.rb
index 39beac52b..8df86dab4 100644
--- a/ruby/openstudio_modeleditor.rb
+++ b/ruby/openstudio_modeleditor.rb
@@ -1,34 +1,9 @@
########################################################################################################################
-# OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+# OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+# See also https://openstudiocoalition.org/about/software_license/
########################################################################################################################
-# add binary dir to system path
-original_path = ENV['PATH']
+original_path = ENV['PATH'] # add binary dir to system path
original_dll_directory = nil
platform_specific_path = nil
diff --git a/ruby/openstudio_modeleditor_rb.cpp b/ruby/openstudio_modeleditor_rb.cpp
index f0dcd9e17..5b3792eab 100644
--- a/ruby/openstudio_modeleditor_rb.cpp
+++ b/ruby/openstudio_modeleditor_rb.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/ruby/test/PathWatcher_Test.rb b/ruby/test/PathWatcher_Test.rb
index 20a42b4e2..3eb14f009 100644
--- a/ruby/test/PathWatcher_Test.rb
+++ b/ruby/test/PathWatcher_Test.rb
@@ -1,30 +1,6 @@
########################################################################################################################
-# OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+# OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+# See also https://openstudiocoalition.org/about/software_license/
########################################################################################################################
require 'openstudio'
diff --git a/ruby/test/WorkspaceWatcher_Test.rb b/ruby/test/WorkspaceWatcher_Test.rb
index 9a421a7a4..adc8f6108 100644
--- a/ruby/test/WorkspaceWatcher_Test.rb
+++ b/ruby/test/WorkspaceWatcher_Test.rb
@@ -1,30 +1,6 @@
########################################################################################################################
-# OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+# OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+# See also https://openstudiocoalition.org/about/software_license/
########################################################################################################################
require 'openstudio'
diff --git a/src/bimserver/BIMserverAPI.hpp b/src/bimserver/BIMserverAPI.hpp
index b269f3a5d..ada5ab10c 100644
--- a/src/bimserver/BIMserverAPI.hpp
+++ b/src/bimserver/BIMserverAPI.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef BIMSERVER_BIMSERVERAPI_HPP
diff --git a/src/bimserver/BIMserverConnection.cpp b/src/bimserver/BIMserverConnection.cpp
index 049c3bc2b..21ed625bf 100644
--- a/src/bimserver/BIMserverConnection.cpp
+++ b/src/bimserver/BIMserverConnection.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "BIMserverConnection.hpp"
diff --git a/src/bimserver/BIMserverConnection.hpp b/src/bimserver/BIMserverConnection.hpp
index 772796643..146f4d875 100644
--- a/src/bimserver/BIMserverConnection.hpp
+++ b/src/bimserver/BIMserverConnection.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef BIMSERVER_BIMSERVERCONNECTION_HPP
diff --git a/src/bimserver/ProjectImporter.cpp b/src/bimserver/ProjectImporter.cpp
index f02ff547c..35a76ac6f 100644
--- a/src/bimserver/ProjectImporter.cpp
+++ b/src/bimserver/ProjectImporter.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ProjectImporter.hpp"
diff --git a/src/bimserver/ProjectImporter.hpp b/src/bimserver/ProjectImporter.hpp
index 61564ccfd..11e2dd678 100644
--- a/src/bimserver/ProjectImporter.hpp
+++ b/src/bimserver/ProjectImporter.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef BIMSERVER_PROJECTIMPORTER_HPP
diff --git a/src/bimserver/Test/BIMserverFixture.cpp b/src/bimserver/Test/BIMserverFixture.cpp
index aad529773..81d3d7ac9 100644
--- a/src/bimserver/Test/BIMserverFixture.cpp
+++ b/src/bimserver/Test/BIMserverFixture.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "BIMserverFixture.hpp"
diff --git a/src/bimserver/Test/BIMserverFixture.hpp b/src/bimserver/Test/BIMserverFixture.hpp
index d1bb1d6d3..a1ca8ada4 100644
--- a/src/bimserver/Test/BIMserverFixture.hpp
+++ b/src/bimserver/Test/BIMserverFixture.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef BIMSERVER_TEST_BIMSERVERFIXTURE_HPP
diff --git a/src/model_editor/AboutBox.hpp.in b/src/model_editor/AboutBox.hpp.in
index 00fba969b..c3ecd9115 100644
--- a/src/model_editor/AboutBox.hpp.in
+++ b/src/model_editor/AboutBox.hpp.in
@@ -6,7 +6,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-${CURRENT_YEAR}, OpenStudio Coalition and other contributors. All rights reserved.
\
ModelEditor is a program for editing EnergyPlus input files.
"
-#endif // MODELEDITOR_ABOUTBOX
+#endif // MODELEDITOR_ABOUTBOX
diff --git a/src/model_editor/AccessPolicyStore.cpp b/src/model_editor/AccessPolicyStore.cpp
index d91c8e345..ce323cf91 100644
--- a/src/model_editor/AccessPolicyStore.cpp
+++ b/src/model_editor/AccessPolicyStore.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/AccessPolicyStore.hpp b/src/model_editor/AccessPolicyStore.hpp
index 91e8f1fbb..132a0ca62 100644
--- a/src/model_editor/AccessPolicyStore.hpp
+++ b/src/model_editor/AccessPolicyStore.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODEL_ACCESSPOLICYSTORE_HPP
diff --git a/src/model_editor/Application.cpp b/src/model_editor/Application.cpp
index a93d62948..d3250fa3d 100644
--- a/src/model_editor/Application.cpp
+++ b/src/model_editor/Application.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "Application.hpp"
diff --git a/src/model_editor/Application.hpp b/src/model_editor/Application.hpp
index cc82c27da..97430fff0 100644
--- a/src/model_editor/Application.hpp
+++ b/src/model_editor/Application.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_APPLICATION_HPP
diff --git a/src/model_editor/BridgeClasses.cpp b/src/model_editor/BridgeClasses.cpp
index 9f4fe8936..e3d8df7d0 100644
--- a/src/model_editor/BridgeClasses.cpp
+++ b/src/model_editor/BridgeClasses.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "BridgeClasses.hpp"
diff --git a/src/model_editor/BridgeClasses.hpp b/src/model_editor/BridgeClasses.hpp
index 8a8a5907c..46723f572 100644
--- a/src/model_editor/BridgeClasses.hpp
+++ b/src/model_editor/BridgeClasses.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_BRIDGECLASSES_HPP
diff --git a/src/model_editor/GithubReleases.cpp b/src/model_editor/GithubReleases.cpp
index 2fcf5e8b3..84a5f12bc 100644
--- a/src/model_editor/GithubReleases.cpp
+++ b/src/model_editor/GithubReleases.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GithubReleases.hpp"
diff --git a/src/model_editor/GithubReleases.hpp b/src/model_editor/GithubReleases.hpp
index 3d129112a..e122b6c69 100644
--- a/src/model_editor/GithubReleases.hpp
+++ b/src/model_editor/GithubReleases.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_GITHUB_RELEASES_HPP
diff --git a/src/model_editor/IGLineEdit.cpp b/src/model_editor/IGLineEdit.cpp
index 5389f8e84..c9f27b2e7 100644
--- a/src/model_editor/IGLineEdit.cpp
+++ b/src/model_editor/IGLineEdit.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "IGLineEdit.hpp"
diff --git a/src/model_editor/IGLineEdit.hpp b/src/model_editor/IGLineEdit.hpp
index f634c0644..6df0bb884 100644
--- a/src/model_editor/IGLineEdit.hpp
+++ b/src/model_editor/IGLineEdit.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_IGLINEEDIT_HPP
diff --git a/src/model_editor/IGSpinBoxes.cpp b/src/model_editor/IGSpinBoxes.cpp
index 2e2921fc6..15dcbfe52 100644
--- a/src/model_editor/IGSpinBoxes.cpp
+++ b/src/model_editor/IGSpinBoxes.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "IGSpinBoxes.hpp"
diff --git a/src/model_editor/IGSpinBoxes.hpp b/src/model_editor/IGSpinBoxes.hpp
index 2e6e09ed4..b4fd73c06 100644
--- a/src/model_editor/IGSpinBoxes.hpp
+++ b/src/model_editor/IGSpinBoxes.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_IGSPINBOXES_HPP
diff --git a/src/model_editor/InspectorDialog.cpp b/src/model_editor/InspectorDialog.cpp
index efc00697a..8420c52fd 100644
--- a/src/model_editor/InspectorDialog.cpp
+++ b/src/model_editor/InspectorDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "InspectorGadget.hpp"
diff --git a/src/model_editor/InspectorDialog.hpp b/src/model_editor/InspectorDialog.hpp
index 1c9de0a83..10d729b26 100644
--- a/src/model_editor/InspectorDialog.hpp
+++ b/src/model_editor/InspectorDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_INSPECTORDIALOG_HPP
diff --git a/src/model_editor/InspectorGadget.cpp b/src/model_editor/InspectorGadget.cpp
index a2a5ba3f1..97c7144c7 100644
--- a/src/model_editor/InspectorGadget.cpp
+++ b/src/model_editor/InspectorGadget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "InspectorGadget.hpp"
diff --git a/src/model_editor/InspectorGadget.hpp b/src/model_editor/InspectorGadget.hpp
index 7838649a4..1b69f8e37 100644
--- a/src/model_editor/InspectorGadget.hpp
+++ b/src/model_editor/InspectorGadget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_INSPECTORGADGET_HPP
diff --git a/src/model_editor/ListWidget.cpp b/src/model_editor/ListWidget.cpp
index a4ccaced1..4e6a3faa6 100644
--- a/src/model_editor/ListWidget.cpp
+++ b/src/model_editor/ListWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/ListWidget.hpp b/src/model_editor/ListWidget.hpp
index 51b606b06..c2c40fb12 100644
--- a/src/model_editor/ListWidget.hpp
+++ b/src/model_editor/ListWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_LISTWIDGET_HPP
diff --git a/src/model_editor/ModalDialogs.cpp b/src/model_editor/ModalDialogs.cpp
index 293e17117..81b3c480d 100644
--- a/src/model_editor/ModalDialogs.cpp
+++ b/src/model_editor/ModalDialogs.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModalDialogs.hpp"
diff --git a/src/model_editor/ModalDialogs.hpp b/src/model_editor/ModalDialogs.hpp
index 45f66016a..9e0240493 100644
--- a/src/model_editor/ModalDialogs.hpp
+++ b/src/model_editor/ModalDialogs.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_MODALDIALOGS_HPP
diff --git a/src/model_editor/ModelEditorAPI.hpp b/src/model_editor/ModelEditorAPI.hpp
index 780f98e2b..9f7cd5504 100644
--- a/src/model_editor/ModelEditorAPI.hpp
+++ b/src/model_editor/ModelEditorAPI.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "QMetaTypes.hpp"
diff --git a/src/model_editor/OSProgressBar.cpp b/src/model_editor/OSProgressBar.cpp
index 09d48df29..59890f0d5 100644
--- a/src/model_editor/OSProgressBar.cpp
+++ b/src/model_editor/OSProgressBar.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSProgressBar.hpp"
diff --git a/src/model_editor/OSProgressBar.hpp b/src/model_editor/OSProgressBar.hpp
index 62ce47196..e62845120 100644
--- a/src/model_editor/OSProgressBar.hpp
+++ b/src/model_editor/OSProgressBar.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_OSProgressBar_HPP
diff --git a/src/model_editor/PathWatcher.cpp b/src/model_editor/PathWatcher.cpp
index ed2bbd947..1309c899e 100644
--- a/src/model_editor/PathWatcher.cpp
+++ b/src/model_editor/PathWatcher.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "PathWatcher.hpp"
diff --git a/src/model_editor/PathWatcher.hpp b/src/model_editor/PathWatcher.hpp
index dafd02e64..a395bc92f 100644
--- a/src/model_editor/PathWatcher.hpp
+++ b/src/model_editor/PathWatcher.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_PATHWATCHER_HPP
diff --git a/src/model_editor/QMetaTypes.cpp b/src/model_editor/QMetaTypes.cpp
index 4a61f0314..4b0730c99 100644
--- a/src/model_editor/QMetaTypes.cpp
+++ b/src/model_editor/QMetaTypes.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "QMetaTypes.hpp"
diff --git a/src/model_editor/QMetaTypes.hpp b/src/model_editor/QMetaTypes.hpp
index 5005dfe35..4d28ba27b 100644
--- a/src/model_editor/QMetaTypes.hpp
+++ b/src/model_editor/QMetaTypes.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_QMETATYPES
diff --git a/src/model_editor/TableView.cpp b/src/model_editor/TableView.cpp
index 6a6b94ca1..59a2618b0 100644
--- a/src/model_editor/TableView.cpp
+++ b/src/model_editor/TableView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/TableView.hpp b/src/model_editor/TableView.hpp
index 4c0051de4..ccdd60a25 100644
--- a/src/model_editor/TableView.hpp
+++ b/src/model_editor/TableView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_TABLEVIEW_HPP
diff --git a/src/model_editor/TableWidget.cpp b/src/model_editor/TableWidget.cpp
index b8b8ed7fc..d4ef4ef77 100644
--- a/src/model_editor/TableWidget.cpp
+++ b/src/model_editor/TableWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "TableWidget.hpp"
diff --git a/src/model_editor/TableWidget.hpp b/src/model_editor/TableWidget.hpp
index 1bdd1f1f9..2796cd034 100644
--- a/src/model_editor/TableWidget.hpp
+++ b/src/model_editor/TableWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_TABLEWIDGET_HPP
diff --git a/src/model_editor/TestButton.cpp b/src/model_editor/TestButton.cpp
index a4dc269aa..a0732bc55 100644
--- a/src/model_editor/TestButton.cpp
+++ b/src/model_editor/TestButton.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "TestButton.hpp"
diff --git a/src/model_editor/TestButton.hpp b/src/model_editor/TestButton.hpp
index b4ff367ca..1a9760b40 100644
--- a/src/model_editor/TestButton.hpp
+++ b/src/model_editor/TestButton.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_TESTBUTTON_HPP
diff --git a/src/model_editor/TreeView.cpp b/src/model_editor/TreeView.cpp
index d1725b3b2..e4c03da4a 100644
--- a/src/model_editor/TreeView.cpp
+++ b/src/model_editor/TreeView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/TreeView.hpp b/src/model_editor/TreeView.hpp
index 376cf09df..ad8156518 100644
--- a/src/model_editor/TreeView.hpp
+++ b/src/model_editor/TreeView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_TREEVIEW_HPP
diff --git a/src/model_editor/UserSettings.cpp b/src/model_editor/UserSettings.cpp
index d5fb82f3b..539c44824 100644
--- a/src/model_editor/UserSettings.cpp
+++ b/src/model_editor/UserSettings.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "UserSettings.hpp"
diff --git a/src/model_editor/UserSettings.hpp b/src/model_editor/UserSettings.hpp
index e3754e080..e249b4e10 100644
--- a/src/model_editor/UserSettings.hpp
+++ b/src/model_editor/UserSettings.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_USERSETTINGS_HPP
diff --git a/src/model_editor/Utilities.cpp b/src/model_editor/Utilities.cpp
index 965d34795..d600261f3 100644
--- a/src/model_editor/Utilities.cpp
+++ b/src/model_editor/Utilities.cpp
@@ -1,34 +1,8 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
-// TODO: this should probably be renamed and moved to OpenStudioApplication/src/utilities/
-
#include "Utilities.hpp"
namespace openstudio {
diff --git a/src/model_editor/Utilities.hpp b/src/model_editor/Utilities.hpp
index 493f12697..8a1e29908 100644
--- a/src/model_editor/Utilities.hpp
+++ b/src/model_editor/Utilities.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_UTILITIES_HPP
diff --git a/src/model_editor/test/GithubReleases_GTest.cpp b/src/model_editor/test/GithubReleases_GTest.cpp
index 4f3d290fa..94dd09e19 100644
--- a/src/model_editor/test/GithubReleases_GTest.cpp
+++ b/src/model_editor/test/GithubReleases_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/test/IGLineEdit_GTest.cpp b/src/model_editor/test/IGLineEdit_GTest.cpp
index 0d4e245a4..c7436e2be 100644
--- a/src/model_editor/test/IGLineEdit_GTest.cpp
+++ b/src/model_editor/test/IGLineEdit_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/test/InspectorDialog_GTest.cpp b/src/model_editor/test/InspectorDialog_GTest.cpp
index 12e10dee6..ff549bcc7 100644
--- a/src/model_editor/test/InspectorDialog_GTest.cpp
+++ b/src/model_editor/test/InspectorDialog_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/test/ModalDialogs_GTest.cpp b/src/model_editor/test/ModalDialogs_GTest.cpp
index e107570af..1695f8c3b 100644
--- a/src/model_editor/test/ModalDialogs_GTest.cpp
+++ b/src/model_editor/test/ModalDialogs_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/test/ModelEditorFixture.cpp b/src/model_editor/test/ModelEditorFixture.cpp
index bdcb6598a..9b0b71a01 100644
--- a/src/model_editor/test/ModelEditorFixture.cpp
+++ b/src/model_editor/test/ModelEditorFixture.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelEditorFixture.hpp"
diff --git a/src/model_editor/test/ModelEditorFixture.hpp b/src/model_editor/test/ModelEditorFixture.hpp
index d1e8a8016..9840286d4 100644
--- a/src/model_editor/test/ModelEditorFixture.hpp
+++ b/src/model_editor/test/ModelEditorFixture.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef MODELEDITOR_TEST_MODELEDITORFIXTURE_HPP
diff --git a/src/model_editor/test/PathWatcher_GTest.cpp b/src/model_editor/test/PathWatcher_GTest.cpp
index d29351e73..3ea85d974 100644
--- a/src/model_editor/test/PathWatcher_GTest.cpp
+++ b/src/model_editor/test/PathWatcher_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/test/QMetaTypes_GTest.cpp b/src/model_editor/test/QMetaTypes_GTest.cpp
index 6d8f017ab..022ee330b 100644
--- a/src/model_editor/test/QMetaTypes_GTest.cpp
+++ b/src/model_editor/test/QMetaTypes_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/model_editor/test/Utilities_GTest.cpp b/src/model_editor/test/Utilities_GTest.cpp
index bfbe4d76c..fc14eebcc 100644
--- a/src/model_editor/test/Utilities_GTest.cpp
+++ b/src/model_editor/test/Utilities_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_app/AboutBox.hpp.in b/src/openstudio_app/AboutBox.hpp.in
index d5c08ca07..110eec11c 100644
--- a/src/openstudio_app/AboutBox.hpp.in
+++ b/src/openstudio_app/AboutBox.hpp.in
@@ -5,10 +5,10 @@
Version: ${OPENSTUDIOAPPLICATION_LONG_VERSION}
\
Compiler: ${ABOUT_COMPILER}
\
OpenStudio SDK (core) version: ${openstudio_VERSION}
\
-Copyright © 2020-2023, OpenStudio Coalition and other contributors. All rights reserved.
\
+Copyright © 2020-${CURRENT_YEAR}, 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 ${QT_VERSION}) that are dynamically linked using GNU Lesser General Public License (LGPL): \
-Qt6Core, Qt6Core5Compat Qt6Widgets, Qt6Network, Qt6Concurrent, Qt6PrintSupport, Qt6Gui, Qt6Quick, Qt6QuickWidgets, Qt6Qml, Qt6QmlModels, Qt6WebChannel, Qt6Positioning, Qt6WebEngine, Qt6WebEngineWidgets, QtWebEngineCore, Qt6DBus, Qt6Xml, Qt6Svg, Qt6OpenGL
\
+Qt6Core, Qt6Core5Compat Qt6Widgets, Qt6Network, Qt6Concurrent, Qt6PrintSupport, Qt6Gui, Qt6Quick, Qt6QuickWidgets, Qt6Qml, Qt6QmlModels, Qt6WebChannel, Qt6Positioning, Qt6WebEngine, Qt6WebEngineWidgets, QtWebEngineCore, Qt6DBus, Qt6Xml, Qt6Svg, Qt6Charts, Qt6OpenGL, Qt6OpenGLWidgets
\
For information on QT, please refer to QT
\
A copy of the GPL 3.0 and LGPL 3.0 are included in the root path of your installation directory.
"
#endif // OPENSTUDIOAPP_ABOUTBOX
diff --git a/src/openstudio_app/ExternalToolsDialog.cpp b/src/openstudio_app/ExternalToolsDialog.cpp
index 63f5f02d4..9754a8192 100644
--- a/src/openstudio_app/ExternalToolsDialog.cpp
+++ b/src/openstudio_app/ExternalToolsDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "./ExternalToolsDialog.hpp"
diff --git a/src/openstudio_app/ExternalToolsDialog.hpp b/src/openstudio_app/ExternalToolsDialog.hpp
index 03edb9faa..16520c692 100644
--- a/src/openstudio_app/ExternalToolsDialog.hpp
+++ b/src/openstudio_app/ExternalToolsDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_EXTERNALTOOLSDIALOG_HPP
diff --git a/src/openstudio_app/LibraryDialog.cpp b/src/openstudio_app/LibraryDialog.cpp
index a10f2f66d..32c914860 100644
--- a/src/openstudio_app/LibraryDialog.cpp
+++ b/src/openstudio_app/LibraryDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "./LibraryDialog.hpp"
diff --git a/src/openstudio_app/LibraryDialog.hpp b/src/openstudio_app/LibraryDialog.hpp
index b3a1e4fe3..5103d416d 100644
--- a/src/openstudio_app/LibraryDialog.hpp
+++ b/src/openstudio_app/LibraryDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LIBRARYDIALOG_HPP
diff --git a/src/openstudio_app/OpenStudioApp.cpp b/src/openstudio_app/OpenStudioApp.cpp
index 3e4c4456d..4e6dee3e0 100644
--- a/src/openstudio_app/OpenStudioApp.cpp
+++ b/src/openstudio_app/OpenStudioApp.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OpenStudioApp.hpp"
diff --git a/src/openstudio_app/OpenStudioApp.hpp b/src/openstudio_app/OpenStudioApp.hpp
index 8f9a103c8..00c823f3e 100644
--- a/src/openstudio_app/OpenStudioApp.hpp
+++ b/src/openstudio_app/OpenStudioApp.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OPENSTUDIOAPP_HPP
diff --git a/src/openstudio_app/StartupMenu.cpp b/src/openstudio_app/StartupMenu.cpp
index 9117bd7b5..9a9ffc44b 100644
--- a/src/openstudio_app/StartupMenu.cpp
+++ b/src/openstudio_app/StartupMenu.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "StartupMenu.hpp"
diff --git a/src/openstudio_app/StartupMenu.hpp b/src/openstudio_app/StartupMenu.hpp
index 1de6ba8d5..1c8170585 100644
--- a/src/openstudio_app/StartupMenu.hpp
+++ b/src/openstudio_app/StartupMenu.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_STARTUPMENU_HPP
diff --git a/src/openstudio_app/StartupView.cpp b/src/openstudio_app/StartupView.cpp
index 2a9a0666b..ff142ee1d 100644
--- a/src/openstudio_app/StartupView.cpp
+++ b/src/openstudio_app/StartupView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "StartupView.hpp"
diff --git a/src/openstudio_app/StartupView.hpp b/src/openstudio_app/StartupView.hpp
index 8f26da984..2338671c8 100644
--- a/src/openstudio_app/StartupView.hpp
+++ b/src/openstudio_app/StartupView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_STARTUPVIEW_HPP
diff --git a/src/openstudio_app/main.cpp b/src/openstudio_app/main.cpp
index fd9bcaad3..d6938e324 100644
--- a/src/openstudio_app/main.cpp
+++ b/src/openstudio_app/main.cpp
@@ -1,35 +1,8 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
-// uncomment for Visual Leak Detector
-//#include
-
#define COMPILING_FROM_OSAPP
#include "../openstudio_lib/OpenStudioAPI.hpp"
#include "OpenStudioApp.hpp"
diff --git a/src/openstudio_app/test/OpenStudioAppFixture.cpp b/src/openstudio_app/test/OpenStudioAppFixture.cpp
index 7adfc31ed..46f8f5229 100644
--- a/src/openstudio_app/test/OpenStudioAppFixture.cpp
+++ b/src/openstudio_app/test/OpenStudioAppFixture.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OpenStudioAppFixture.hpp"
diff --git a/src/openstudio_app/test/OpenStudioAppFixture.hpp b/src/openstudio_app/test/OpenStudioAppFixture.hpp
index f0900c68e..6ad52d7f6 100644
--- a/src/openstudio_app/test/OpenStudioAppFixture.hpp
+++ b/src/openstudio_app/test/OpenStudioAppFixture.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_TEST_OPENSTUDIOAPPFIXTURE_HPP
diff --git a/src/openstudio_app/test/Resources_GTest.cpp b/src/openstudio_app/test/Resources_GTest.cpp
index c5bb947fd..e462c400e 100644
--- a/src/openstudio_app/test/Resources_GTest.cpp
+++ b/src/openstudio_app/test/Resources_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_app/test/Units_GTest.cpp b/src/openstudio_app/test/Units_GTest.cpp
index e05a74131..9518e379f 100644
--- a/src/openstudio_app/test/Units_GTest.cpp
+++ b/src/openstudio_app/test/Units_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/AnalyticsHelper.cpp b/src/openstudio_lib/AnalyticsHelper.cpp
index cd71aae2d..c7fb74155 100644
--- a/src/openstudio_lib/AnalyticsHelper.cpp
+++ b/src/openstudio_lib/AnalyticsHelper.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "AnalyticsHelper.hpp"
diff --git a/src/openstudio_lib/AnalyticsHelper.hpp b/src/openstudio_lib/AnalyticsHelper.hpp
index 32a588495..2ed866b4c 100644
--- a/src/openstudio_lib/AnalyticsHelper.hpp
+++ b/src/openstudio_lib/AnalyticsHelper.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_ANALYTICSHELPER_HPP
diff --git a/src/openstudio_lib/AnalyticsHelperSecrets.hxx.in b/src/openstudio_lib/AnalyticsHelperSecrets.hxx.in
index 92fbf0134..abc5f37c5 100644
--- a/src/openstudio_lib/AnalyticsHelperSecrets.hxx.in
+++ b/src/openstudio_lib/AnalyticsHelperSecrets.hxx.in
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_ANALYTICSHELPER_SECRETS_HXX
diff --git a/src/openstudio_lib/ApplyMeasureNowDialog.cpp b/src/openstudio_lib/ApplyMeasureNowDialog.cpp
index 0b7a4ff80..e435a3b6c 100644
--- a/src/openstudio_lib/ApplyMeasureNowDialog.cpp
+++ b/src/openstudio_lib/ApplyMeasureNowDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ApplyMeasureNowDialog.hpp"
diff --git a/src/openstudio_lib/ApplyMeasureNowDialog.hpp b/src/openstudio_lib/ApplyMeasureNowDialog.hpp
index f50491c8d..629efb5c6 100644
--- a/src/openstudio_lib/ApplyMeasureNowDialog.hpp
+++ b/src/openstudio_lib/ApplyMeasureNowDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_APPLYMEASURENOWDIALOG_HPP
diff --git a/src/openstudio_lib/BCLComponentItem.cpp b/src/openstudio_lib/BCLComponentItem.cpp
index a72668df1..3724c0bff 100644
--- a/src/openstudio_lib/BCLComponentItem.cpp
+++ b/src/openstudio_lib/BCLComponentItem.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "BCLComponentItem.hpp"
diff --git a/src/openstudio_lib/BCLComponentItem.hpp b/src/openstudio_lib/BCLComponentItem.hpp
index d98731246..6e2c7dc1a 100644
--- a/src/openstudio_lib/BCLComponentItem.hpp
+++ b/src/openstudio_lib/BCLComponentItem.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_BCLCOMPONENTITEM_HPP
diff --git a/src/openstudio_lib/BuildingInspectorView.cpp b/src/openstudio_lib/BuildingInspectorView.cpp
index f9312b1c1..eff88aac6 100644
--- a/src/openstudio_lib/BuildingInspectorView.cpp
+++ b/src/openstudio_lib/BuildingInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "BuildingInspectorView.hpp"
diff --git a/src/openstudio_lib/BuildingInspectorView.hpp b/src/openstudio_lib/BuildingInspectorView.hpp
index 73695db01..62b67f4c9 100644
--- a/src/openstudio_lib/BuildingInspectorView.hpp
+++ b/src/openstudio_lib/BuildingInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_BUILDINGINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/CollapsibleInspector.cpp b/src/openstudio_lib/CollapsibleInspector.cpp
index 310520671..91a3e6146 100644
--- a/src/openstudio_lib/CollapsibleInspector.cpp
+++ b/src/openstudio_lib/CollapsibleInspector.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "CollapsibleInspector.hpp"
diff --git a/src/openstudio_lib/CollapsibleInspector.hpp b/src/openstudio_lib/CollapsibleInspector.hpp
index 08b075a90..71cce79e0 100644
--- a/src/openstudio_lib/CollapsibleInspector.hpp
+++ b/src/openstudio_lib/CollapsibleInspector.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_COLLAPSIBLEINSPECTOR_HPP
diff --git a/src/openstudio_lib/ConstructionAirBoundaryInspectorView.cpp b/src/openstudio_lib/ConstructionAirBoundaryInspectorView.cpp
index 63a19d212..e1addd08d 100644
--- a/src/openstudio_lib/ConstructionAirBoundaryInspectorView.cpp
+++ b/src/openstudio_lib/ConstructionAirBoundaryInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionAirBoundaryInspectorView.hpp"
diff --git a/src/openstudio_lib/ConstructionAirBoundaryInspectorView.hpp b/src/openstudio_lib/ConstructionAirBoundaryInspectorView.hpp
index 83b0e5a52..77a272a01 100644
--- a/src/openstudio_lib/ConstructionAirBoundaryInspectorView.hpp
+++ b/src/openstudio_lib/ConstructionAirBoundaryInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONAIRBOUNDARYINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.cpp b/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.cpp
index 3f98f8917..c5053bfc2 100644
--- a/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.cpp
+++ b/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionCfactorUndergroundWallInspectorView.hpp"
diff --git a/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.hpp b/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.hpp
index d3c049dda..ff323b7ac 100644
--- a/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.hpp
+++ b/src/openstudio_lib/ConstructionCfactorUndergroundWallInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONCFACTORUNDERGROUNDWALLINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.cpp b/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.cpp
index 1a74be48b..7a6203510 100644
--- a/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.cpp
+++ b/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionFfactorGroundFloorInspectorView.hpp"
diff --git a/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.hpp b/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.hpp
index 11b32cfc8..0b7d85acb 100644
--- a/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.hpp
+++ b/src/openstudio_lib/ConstructionFfactorGroundFloorInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONFFACTORGROUNDFLOORINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ConstructionInspectorView.cpp b/src/openstudio_lib/ConstructionInspectorView.cpp
index 5bd031d22..db77796dc 100644
--- a/src/openstudio_lib/ConstructionInspectorView.cpp
+++ b/src/openstudio_lib/ConstructionInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionInspectorView.hpp"
diff --git a/src/openstudio_lib/ConstructionInspectorView.hpp b/src/openstudio_lib/ConstructionInspectorView.hpp
index c58005f83..7ee185b37 100644
--- a/src/openstudio_lib/ConstructionInspectorView.hpp
+++ b/src/openstudio_lib/ConstructionInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ConstructionInternalSourceInspectorView.cpp b/src/openstudio_lib/ConstructionInternalSourceInspectorView.cpp
index 268421430..940af71d8 100644
--- a/src/openstudio_lib/ConstructionInternalSourceInspectorView.cpp
+++ b/src/openstudio_lib/ConstructionInternalSourceInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionInternalSourceInspectorView.hpp"
diff --git a/src/openstudio_lib/ConstructionInternalSourceInspectorView.hpp b/src/openstudio_lib/ConstructionInternalSourceInspectorView.hpp
index dff609fc8..6f2bf1937 100644
--- a/src/openstudio_lib/ConstructionInternalSourceInspectorView.hpp
+++ b/src/openstudio_lib/ConstructionInternalSourceInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONINTERNALSOURCEINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ConstructionObjectVectorController.cpp b/src/openstudio_lib/ConstructionObjectVectorController.cpp
index 463c167ea..1b8f6a11d 100644
--- a/src/openstudio_lib/ConstructionObjectVectorController.cpp
+++ b/src/openstudio_lib/ConstructionObjectVectorController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionObjectVectorController.hpp"
diff --git a/src/openstudio_lib/ConstructionObjectVectorController.hpp b/src/openstudio_lib/ConstructionObjectVectorController.hpp
index 16173c021..9378deaa4 100644
--- a/src/openstudio_lib/ConstructionObjectVectorController.hpp
+++ b/src/openstudio_lib/ConstructionObjectVectorController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONOBJECTVECTORCONTROLLER_HPP
diff --git a/src/openstudio_lib/ConstructionWindowDataFileInspectorView.cpp b/src/openstudio_lib/ConstructionWindowDataFileInspectorView.cpp
index 50b5cb730..8d0d69067 100644
--- a/src/openstudio_lib/ConstructionWindowDataFileInspectorView.cpp
+++ b/src/openstudio_lib/ConstructionWindowDataFileInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionWindowDataFileInspectorView.hpp"
diff --git a/src/openstudio_lib/ConstructionWindowDataFileInspectorView.hpp b/src/openstudio_lib/ConstructionWindowDataFileInspectorView.hpp
index 92bc07c05..ad4798c70 100644
--- a/src/openstudio_lib/ConstructionWindowDataFileInspectorView.hpp
+++ b/src/openstudio_lib/ConstructionWindowDataFileInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONWINDOWDATAFILEINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ConstructionsController.cpp b/src/openstudio_lib/ConstructionsController.cpp
index 8cf6b0690..4a82e3599 100644
--- a/src/openstudio_lib/ConstructionsController.cpp
+++ b/src/openstudio_lib/ConstructionsController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionsController.hpp"
diff --git a/src/openstudio_lib/ConstructionsController.hpp b/src/openstudio_lib/ConstructionsController.hpp
index 71ce7f738..e959f8590 100644
--- a/src/openstudio_lib/ConstructionsController.hpp
+++ b/src/openstudio_lib/ConstructionsController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONSCONTROLLER_HPP
diff --git a/src/openstudio_lib/ConstructionsTabController.cpp b/src/openstudio_lib/ConstructionsTabController.cpp
index 7e8153185..5a3e146c7 100644
--- a/src/openstudio_lib/ConstructionsTabController.cpp
+++ b/src/openstudio_lib/ConstructionsTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionsTabController.hpp"
diff --git a/src/openstudio_lib/ConstructionsTabController.hpp b/src/openstudio_lib/ConstructionsTabController.hpp
index 6a18eb23d..8fa3d42cd 100644
--- a/src/openstudio_lib/ConstructionsTabController.hpp
+++ b/src/openstudio_lib/ConstructionsTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONSTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/ConstructionsTabView.cpp b/src/openstudio_lib/ConstructionsTabView.cpp
index a4a8f2470..450c47eb1 100644
--- a/src/openstudio_lib/ConstructionsTabView.cpp
+++ b/src/openstudio_lib/ConstructionsTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionsTabView.hpp"
diff --git a/src/openstudio_lib/ConstructionsTabView.hpp b/src/openstudio_lib/ConstructionsTabView.hpp
index 279158248..919b95bc8 100644
--- a/src/openstudio_lib/ConstructionsTabView.hpp
+++ b/src/openstudio_lib/ConstructionsTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONSTABVIEW_HPP
diff --git a/src/openstudio_lib/ConstructionsView.cpp b/src/openstudio_lib/ConstructionsView.cpp
index 3839e3af9..eee61c450 100644
--- a/src/openstudio_lib/ConstructionsView.cpp
+++ b/src/openstudio_lib/ConstructionsView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ConstructionsView.hpp"
diff --git a/src/openstudio_lib/ConstructionsView.hpp b/src/openstudio_lib/ConstructionsView.hpp
index f04b7a538..07e88843f 100644
--- a/src/openstudio_lib/ConstructionsView.hpp
+++ b/src/openstudio_lib/ConstructionsView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_CONSTRUCTIONSVIEW_HPP
diff --git a/src/openstudio_lib/DefaultConstructionSetInspectorView.cpp b/src/openstudio_lib/DefaultConstructionSetInspectorView.cpp
index 925a0ff0c..644330116 100644
--- a/src/openstudio_lib/DefaultConstructionSetInspectorView.cpp
+++ b/src/openstudio_lib/DefaultConstructionSetInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "DefaultConstructionSetInspectorView.hpp"
diff --git a/src/openstudio_lib/DefaultConstructionSetInspectorView.hpp b/src/openstudio_lib/DefaultConstructionSetInspectorView.hpp
index 1078256ff..76528583f 100644
--- a/src/openstudio_lib/DefaultConstructionSetInspectorView.hpp
+++ b/src/openstudio_lib/DefaultConstructionSetInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_DEFAULTCONSTRUCTIONSETINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/DefaultConstructionSetsController.cpp b/src/openstudio_lib/DefaultConstructionSetsController.cpp
index 477962c7a..7847198b2 100644
--- a/src/openstudio_lib/DefaultConstructionSetsController.cpp
+++ b/src/openstudio_lib/DefaultConstructionSetsController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "DefaultConstructionSetsController.hpp"
diff --git a/src/openstudio_lib/DefaultConstructionSetsController.hpp b/src/openstudio_lib/DefaultConstructionSetsController.hpp
index 3fe3e128c..10a49ce8e 100644
--- a/src/openstudio_lib/DefaultConstructionSetsController.hpp
+++ b/src/openstudio_lib/DefaultConstructionSetsController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_DEFAULTCONSTRUCTIONSETSCONTROLLER_HPP
diff --git a/src/openstudio_lib/DefaultConstructionSetsView.cpp b/src/openstudio_lib/DefaultConstructionSetsView.cpp
index 7317646ba..a7268c18e 100644
--- a/src/openstudio_lib/DefaultConstructionSetsView.cpp
+++ b/src/openstudio_lib/DefaultConstructionSetsView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "DefaultConstructionSetsView.hpp"
diff --git a/src/openstudio_lib/DefaultConstructionSetsView.hpp b/src/openstudio_lib/DefaultConstructionSetsView.hpp
index 57d6998d9..8da86a053 100644
--- a/src/openstudio_lib/DefaultConstructionSetsView.hpp
+++ b/src/openstudio_lib/DefaultConstructionSetsView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_DEFAULTCONSTRUCTIONSETSVIEW_HPP
diff --git a/src/openstudio_lib/DesignDayGridView.cpp b/src/openstudio_lib/DesignDayGridView.cpp
index f0863e850..fb5e58a87 100644
--- a/src/openstudio_lib/DesignDayGridView.cpp
+++ b/src/openstudio_lib/DesignDayGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "DesignDayGridView.hpp"
diff --git a/src/openstudio_lib/DesignDayGridView.hpp b/src/openstudio_lib/DesignDayGridView.hpp
index 2c9c6bae4..31591a2db 100644
--- a/src/openstudio_lib/DesignDayGridView.hpp
+++ b/src/openstudio_lib/DesignDayGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_DESIGNDAYGRIDVIEW_HPP
diff --git a/src/openstudio_lib/EMSInspectorView.cpp b/src/openstudio_lib/EMSInspectorView.cpp
index 58b5ac896..8e977ab01 100644
--- a/src/openstudio_lib/EMSInspectorView.cpp
+++ b/src/openstudio_lib/EMSInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "EMSInspectorView.hpp"
diff --git a/src/openstudio_lib/EMSInspectorView.hpp b/src/openstudio_lib/EMSInspectorView.hpp
index 5251a5e7e..43a0517fd 100644
--- a/src/openstudio_lib/EMSInspectorView.hpp
+++ b/src/openstudio_lib/EMSInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_EMSINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ElectricEquipmentInspectorView.cpp b/src/openstudio_lib/ElectricEquipmentInspectorView.cpp
index 5c49bdf04..34b0ee379 100644
--- a/src/openstudio_lib/ElectricEquipmentInspectorView.cpp
+++ b/src/openstudio_lib/ElectricEquipmentInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ElectricEquipmentInspectorView.hpp"
diff --git a/src/openstudio_lib/ElectricEquipmentInspectorView.hpp b/src/openstudio_lib/ElectricEquipmentInspectorView.hpp
index 2a58d69a7..c81de0918 100644
--- a/src/openstudio_lib/ElectricEquipmentInspectorView.hpp
+++ b/src/openstudio_lib/ElectricEquipmentInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_ELECTRICEQUIPMENTINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/FacilityExteriorEquipmentGridView.cpp b/src/openstudio_lib/FacilityExteriorEquipmentGridView.cpp
index 9ab3060d5..26fcd7452 100644
--- a/src/openstudio_lib/FacilityExteriorEquipmentGridView.cpp
+++ b/src/openstudio_lib/FacilityExteriorEquipmentGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "FacilityExteriorEquipmentGridView.hpp"
diff --git a/src/openstudio_lib/FacilityExteriorEquipmentGridView.hpp b/src/openstudio_lib/FacilityExteriorEquipmentGridView.hpp
index 67baa23ad..bc16ce0f6 100644
--- a/src/openstudio_lib/FacilityExteriorEquipmentGridView.hpp
+++ b/src/openstudio_lib/FacilityExteriorEquipmentGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_FACILITYEXTERIOREQUIPMENTGRIDVIEW_HPP
diff --git a/src/openstudio_lib/FacilityShadingGridView.cpp b/src/openstudio_lib/FacilityShadingGridView.cpp
index 3b5adca33..2c680e1f0 100644
--- a/src/openstudio_lib/FacilityShadingGridView.cpp
+++ b/src/openstudio_lib/FacilityShadingGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "FacilityShadingGridView.hpp"
diff --git a/src/openstudio_lib/FacilityShadingGridView.hpp b/src/openstudio_lib/FacilityShadingGridView.hpp
index 610618e6d..74b29aab6 100644
--- a/src/openstudio_lib/FacilityShadingGridView.hpp
+++ b/src/openstudio_lib/FacilityShadingGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_FACILITYSHADINGGRIDVIEW_HPP
diff --git a/src/openstudio_lib/FacilityStoriesGridView.cpp b/src/openstudio_lib/FacilityStoriesGridView.cpp
index adf3f0c95..df7638f83 100644
--- a/src/openstudio_lib/FacilityStoriesGridView.cpp
+++ b/src/openstudio_lib/FacilityStoriesGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "FacilityStoriesGridView.hpp"
diff --git a/src/openstudio_lib/FacilityStoriesGridView.hpp b/src/openstudio_lib/FacilityStoriesGridView.hpp
index 76fb1138f..5689b4789 100644
--- a/src/openstudio_lib/FacilityStoriesGridView.hpp
+++ b/src/openstudio_lib/FacilityStoriesGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_FACILITYSTORIESGRIDVIEW_HPP
diff --git a/src/openstudio_lib/FacilityTabController.cpp b/src/openstudio_lib/FacilityTabController.cpp
index eadf2a736..79ffdcc90 100644
--- a/src/openstudio_lib/FacilityTabController.cpp
+++ b/src/openstudio_lib/FacilityTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "FacilityTabController.hpp"
diff --git a/src/openstudio_lib/FacilityTabController.hpp b/src/openstudio_lib/FacilityTabController.hpp
index 280cc1194..3af572677 100644
--- a/src/openstudio_lib/FacilityTabController.hpp
+++ b/src/openstudio_lib/FacilityTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_FACILITYTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/FacilityTabView.cpp b/src/openstudio_lib/FacilityTabView.cpp
index 9c02c5385..807d04def 100644
--- a/src/openstudio_lib/FacilityTabView.cpp
+++ b/src/openstudio_lib/FacilityTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "FacilityTabView.hpp"
diff --git a/src/openstudio_lib/FacilityTabView.hpp b/src/openstudio_lib/FacilityTabView.hpp
index d9939cce8..8686b416e 100644
--- a/src/openstudio_lib/FacilityTabView.hpp
+++ b/src/openstudio_lib/FacilityTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_FACILITYTABVIEW_HPP
diff --git a/src/openstudio_lib/GasEquipmentInspectorView.cpp b/src/openstudio_lib/GasEquipmentInspectorView.cpp
index 97836da59..27f53a6a5 100644
--- a/src/openstudio_lib/GasEquipmentInspectorView.cpp
+++ b/src/openstudio_lib/GasEquipmentInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GasEquipmentInspectorView.hpp"
diff --git a/src/openstudio_lib/GasEquipmentInspectorView.hpp b/src/openstudio_lib/GasEquipmentInspectorView.hpp
index c68cd8057..c62d5e62f 100644
--- a/src/openstudio_lib/GasEquipmentInspectorView.hpp
+++ b/src/openstudio_lib/GasEquipmentInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GASEQUIPMENTINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/GeometryEditorController.cpp b/src/openstudio_lib/GeometryEditorController.cpp
index 39cbd0568..ca14c58c1 100644
--- a/src/openstudio_lib/GeometryEditorController.cpp
+++ b/src/openstudio_lib/GeometryEditorController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GeometryEditorController.hpp"
diff --git a/src/openstudio_lib/GeometryEditorController.hpp b/src/openstudio_lib/GeometryEditorController.hpp
index 98d613947..af0e174f7 100644
--- a/src/openstudio_lib/GeometryEditorController.hpp
+++ b/src/openstudio_lib/GeometryEditorController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GEOMETRYEDITORCONTROLLER_HPP
diff --git a/src/openstudio_lib/GeometryEditorView.cpp b/src/openstudio_lib/GeometryEditorView.cpp
index 58a12ca3a..48671da38 100644
--- a/src/openstudio_lib/GeometryEditorView.cpp
+++ b/src/openstudio_lib/GeometryEditorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GeometryEditorView.hpp"
diff --git a/src/openstudio_lib/GeometryEditorView.hpp b/src/openstudio_lib/GeometryEditorView.hpp
index 509d697ce..0fe0664a7 100644
--- a/src/openstudio_lib/GeometryEditorView.hpp
+++ b/src/openstudio_lib/GeometryEditorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GEOMETRYEDITORVIEW_HPP
diff --git a/src/openstudio_lib/GeometryPreviewController.cpp b/src/openstudio_lib/GeometryPreviewController.cpp
index aa91dbb8d..0232e911b 100644
--- a/src/openstudio_lib/GeometryPreviewController.cpp
+++ b/src/openstudio_lib/GeometryPreviewController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GeometryPreviewController.hpp"
diff --git a/src/openstudio_lib/GeometryPreviewController.hpp b/src/openstudio_lib/GeometryPreviewController.hpp
index 0f96aa024..fa4df678c 100644
--- a/src/openstudio_lib/GeometryPreviewController.hpp
+++ b/src/openstudio_lib/GeometryPreviewController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GEOMETRYPREVIEWCONTROLLER_HPP
diff --git a/src/openstudio_lib/GeometryPreviewView.cpp b/src/openstudio_lib/GeometryPreviewView.cpp
index 4389d5fd4..97771a1cf 100644
--- a/src/openstudio_lib/GeometryPreviewView.cpp
+++ b/src/openstudio_lib/GeometryPreviewView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GeometryPreviewView.hpp"
diff --git a/src/openstudio_lib/GeometryPreviewView.hpp b/src/openstudio_lib/GeometryPreviewView.hpp
index 304bd7ebf..2b7eaeff8 100644
--- a/src/openstudio_lib/GeometryPreviewView.hpp
+++ b/src/openstudio_lib/GeometryPreviewView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GEOMETRYPREVIEWVIEW_HPP
diff --git a/src/openstudio_lib/GeometryTabController.cpp b/src/openstudio_lib/GeometryTabController.cpp
index 127342876..feb4d9a85 100644
--- a/src/openstudio_lib/GeometryTabController.cpp
+++ b/src/openstudio_lib/GeometryTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GeometryTabController.hpp"
diff --git a/src/openstudio_lib/GeometryTabController.hpp b/src/openstudio_lib/GeometryTabController.hpp
index 3c71fa4b9..1e7f419f7 100644
--- a/src/openstudio_lib/GeometryTabController.hpp
+++ b/src/openstudio_lib/GeometryTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GEOMETRYTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/GeometryTabView.cpp b/src/openstudio_lib/GeometryTabView.cpp
index 2ee45158a..c0ad179f6 100644
--- a/src/openstudio_lib/GeometryTabView.cpp
+++ b/src/openstudio_lib/GeometryTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GeometryTabView.hpp"
diff --git a/src/openstudio_lib/GeometryTabView.hpp b/src/openstudio_lib/GeometryTabView.hpp
index b7e8db29a..35adade00 100644
--- a/src/openstudio_lib/GeometryTabView.hpp
+++ b/src/openstudio_lib/GeometryTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GEOMETRYTABVIEW_HPP
diff --git a/src/openstudio_lib/GridItem.cpp b/src/openstudio_lib/GridItem.cpp
index 06c99c792..483d46f4e 100644
--- a/src/openstudio_lib/GridItem.cpp
+++ b/src/openstudio_lib/GridItem.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GridItem.hpp"
diff --git a/src/openstudio_lib/GridItem.hpp b/src/openstudio_lib/GridItem.hpp
index 6123d3087..9d4b0507e 100644
--- a/src/openstudio_lib/GridItem.hpp
+++ b/src/openstudio_lib/GridItem.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GRIDITEM_HPP
diff --git a/src/openstudio_lib/GridScene.cpp b/src/openstudio_lib/GridScene.cpp
index 070494343..169bf9c81 100644
--- a/src/openstudio_lib/GridScene.cpp
+++ b/src/openstudio_lib/GridScene.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GridScene.hpp"
diff --git a/src/openstudio_lib/GridScene.hpp b/src/openstudio_lib/GridScene.hpp
index ad37447f5..8068d390a 100644
--- a/src/openstudio_lib/GridScene.hpp
+++ b/src/openstudio_lib/GridScene.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GRIDSCENE_HPP
diff --git a/src/openstudio_lib/GridViewSubTab.cpp b/src/openstudio_lib/GridViewSubTab.cpp
index bad925870..76831ae98 100644
--- a/src/openstudio_lib/GridViewSubTab.cpp
+++ b/src/openstudio_lib/GridViewSubTab.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "GridViewSubTab.hpp"
diff --git a/src/openstudio_lib/GridViewSubTab.hpp b/src/openstudio_lib/GridViewSubTab.hpp
index ca5ba3b11..f329f7d7e 100644
--- a/src/openstudio_lib/GridViewSubTab.hpp
+++ b/src/openstudio_lib/GridViewSubTab.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_GRIDVIEWSUBTAB_HPP
diff --git a/src/openstudio_lib/HVACSystemsController.cpp b/src/openstudio_lib/HVACSystemsController.cpp
index 1c83040d9..49f9dea05 100644
--- a/src/openstudio_lib/HVACSystemsController.cpp
+++ b/src/openstudio_lib/HVACSystemsController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "HVACSystemsController.hpp"
diff --git a/src/openstudio_lib/HVACSystemsController.hpp b/src/openstudio_lib/HVACSystemsController.hpp
index 47b524b56..409354efe 100644
--- a/src/openstudio_lib/HVACSystemsController.hpp
+++ b/src/openstudio_lib/HVACSystemsController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_HVACSYSTEMSCONTROLLER_HPP
diff --git a/src/openstudio_lib/HVACSystemsTabController.cpp b/src/openstudio_lib/HVACSystemsTabController.cpp
index ff3077eed..be98e2741 100644
--- a/src/openstudio_lib/HVACSystemsTabController.cpp
+++ b/src/openstudio_lib/HVACSystemsTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "HVACSystemsTabController.hpp"
diff --git a/src/openstudio_lib/HVACSystemsTabController.hpp b/src/openstudio_lib/HVACSystemsTabController.hpp
index 6a07303f4..b1ae76d65 100644
--- a/src/openstudio_lib/HVACSystemsTabController.hpp
+++ b/src/openstudio_lib/HVACSystemsTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_HVACSYSTEMSTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/HVACSystemsTabView.cpp b/src/openstudio_lib/HVACSystemsTabView.cpp
index a1d382f5e..fc0f80efa 100644
--- a/src/openstudio_lib/HVACSystemsTabView.cpp
+++ b/src/openstudio_lib/HVACSystemsTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "HVACSystemsTabView.hpp"
diff --git a/src/openstudio_lib/HVACSystemsTabView.hpp b/src/openstudio_lib/HVACSystemsTabView.hpp
index 12bee6389..cc28c14c2 100644
--- a/src/openstudio_lib/HVACSystemsTabView.hpp
+++ b/src/openstudio_lib/HVACSystemsTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_HVACSYSTEMSTABVIEW_HPP
diff --git a/src/openstudio_lib/HVACSystemsView.cpp b/src/openstudio_lib/HVACSystemsView.cpp
index d64f628ef..2ff14535f 100644
--- a/src/openstudio_lib/HVACSystemsView.cpp
+++ b/src/openstudio_lib/HVACSystemsView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "HVACSystemsView.hpp"
diff --git a/src/openstudio_lib/HVACSystemsView.hpp b/src/openstudio_lib/HVACSystemsView.hpp
index 168292a4b..3cd16ae13 100644
--- a/src/openstudio_lib/HVACSystemsView.hpp
+++ b/src/openstudio_lib/HVACSystemsView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_HVACSYSTEMSVIEW_HPP
diff --git a/src/openstudio_lib/HVACTemplateHelperDialog.cpp b/src/openstudio_lib/HVACTemplateHelperDialog.cpp
index 6e4ddb854..99f27dc6f 100644
--- a/src/openstudio_lib/HVACTemplateHelperDialog.cpp
+++ b/src/openstudio_lib/HVACTemplateHelperDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "HVACTemplateHelperDialog.hpp"
diff --git a/src/openstudio_lib/HVACTemplateHelperDialog.hpp b/src/openstudio_lib/HVACTemplateHelperDialog.hpp
index c46d4c08f..f41d567fc 100644
--- a/src/openstudio_lib/HVACTemplateHelperDialog.hpp
+++ b/src/openstudio_lib/HVACTemplateHelperDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_HVACTEMPLATEHELPERDIALOG_HPP
diff --git a/src/openstudio_lib/HorizontalTabWidget.cpp b/src/openstudio_lib/HorizontalTabWidget.cpp
index 6abc6738f..48069b5ff 100644
--- a/src/openstudio_lib/HorizontalTabWidget.cpp
+++ b/src/openstudio_lib/HorizontalTabWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "HorizontalTabWidget.hpp"
diff --git a/src/openstudio_lib/HorizontalTabWidget.hpp b/src/openstudio_lib/HorizontalTabWidget.hpp
index d6fb2098c..66e06c7dd 100644
--- a/src/openstudio_lib/HorizontalTabWidget.hpp
+++ b/src/openstudio_lib/HorizontalTabWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_HORIZONTALTABWIDGET_HPP
diff --git a/src/openstudio_lib/IconLibrary.cpp b/src/openstudio_lib/IconLibrary.cpp
index 161adf76b..f4ad56cae 100644
--- a/src/openstudio_lib/IconLibrary.cpp
+++ b/src/openstudio_lib/IconLibrary.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "IconLibrary.hpp"
diff --git a/src/openstudio_lib/IconLibrary.hpp b/src/openstudio_lib/IconLibrary.hpp
index f7ca7195e..fb62af16d 100644
--- a/src/openstudio_lib/IconLibrary.hpp
+++ b/src/openstudio_lib/IconLibrary.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_ICONLIBRARY_HPP
diff --git a/src/openstudio_lib/InspectorController.cpp b/src/openstudio_lib/InspectorController.cpp
index 81e7e5270..80e9cf071 100644
--- a/src/openstudio_lib/InspectorController.cpp
+++ b/src/openstudio_lib/InspectorController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "InspectorController.hpp"
diff --git a/src/openstudio_lib/InspectorController.hpp b/src/openstudio_lib/InspectorController.hpp
index e93ef4ac2..8c229ab27 100644
--- a/src/openstudio_lib/InspectorController.hpp
+++ b/src/openstudio_lib/InspectorController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_INSPECTORCONTROLLER_HPP
diff --git a/src/openstudio_lib/InspectorView.cpp b/src/openstudio_lib/InspectorView.cpp
index f9d0b58e4..72aa8065d 100644
--- a/src/openstudio_lib/InspectorView.cpp
+++ b/src/openstudio_lib/InspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "InspectorView.hpp"
diff --git a/src/openstudio_lib/InspectorView.hpp b/src/openstudio_lib/InspectorView.hpp
index f87aa8d99..b5ddca2a9 100644
--- a/src/openstudio_lib/InspectorView.hpp
+++ b/src/openstudio_lib/InspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_INSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/InternalMassInspectorView.cpp b/src/openstudio_lib/InternalMassInspectorView.cpp
index ec8e5c66e..a098cb6f1 100644
--- a/src/openstudio_lib/InternalMassInspectorView.cpp
+++ b/src/openstudio_lib/InternalMassInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "InternalMassInspectorView.hpp"
diff --git a/src/openstudio_lib/InternalMassInspectorView.hpp b/src/openstudio_lib/InternalMassInspectorView.hpp
index 52a536fd3..7b4cece23 100644
--- a/src/openstudio_lib/InternalMassInspectorView.hpp
+++ b/src/openstudio_lib/InternalMassInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_INTERNALMASSINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/LibraryTabWidget.cpp b/src/openstudio_lib/LibraryTabWidget.cpp
index a6851b0d3..2ab2d6213 100644
--- a/src/openstudio_lib/LibraryTabWidget.cpp
+++ b/src/openstudio_lib/LibraryTabWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LibraryTabWidget.hpp"
diff --git a/src/openstudio_lib/LibraryTabWidget.hpp b/src/openstudio_lib/LibraryTabWidget.hpp
index 20f9c8c10..63ed19d19 100644
--- a/src/openstudio_lib/LibraryTabWidget.hpp
+++ b/src/openstudio_lib/LibraryTabWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LIBRARYTABWIDGET_HPP
diff --git a/src/openstudio_lib/LifeCycleCostsTabView.cpp b/src/openstudio_lib/LifeCycleCostsTabView.cpp
index 325305346..670363625 100644
--- a/src/openstudio_lib/LifeCycleCostsTabView.cpp
+++ b/src/openstudio_lib/LifeCycleCostsTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LifeCycleCostsTabView.hpp"
diff --git a/src/openstudio_lib/LifeCycleCostsTabView.hpp b/src/openstudio_lib/LifeCycleCostsTabView.hpp
index c5a697ee7..5148c2a61 100644
--- a/src/openstudio_lib/LifeCycleCostsTabView.hpp
+++ b/src/openstudio_lib/LifeCycleCostsTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LIFECYCLECOSTSTABVIEW_HPP
diff --git a/src/openstudio_lib/LightsInspectorView.cpp b/src/openstudio_lib/LightsInspectorView.cpp
index 7844b0c9a..8131187ab 100644
--- a/src/openstudio_lib/LightsInspectorView.cpp
+++ b/src/openstudio_lib/LightsInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LightsInspectorView.hpp"
diff --git a/src/openstudio_lib/LightsInspectorView.hpp b/src/openstudio_lib/LightsInspectorView.hpp
index 9a2bfbf5f..f5452e2b4 100644
--- a/src/openstudio_lib/LightsInspectorView.hpp
+++ b/src/openstudio_lib/LightsInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LIGHTSINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/LoadsController.cpp b/src/openstudio_lib/LoadsController.cpp
index 95f5a64bb..f7de3a7d2 100644
--- a/src/openstudio_lib/LoadsController.cpp
+++ b/src/openstudio_lib/LoadsController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LoadsController.hpp"
diff --git a/src/openstudio_lib/LoadsController.hpp b/src/openstudio_lib/LoadsController.hpp
index ce0ad1d3e..6146e9871 100644
--- a/src/openstudio_lib/LoadsController.hpp
+++ b/src/openstudio_lib/LoadsController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LOADSCONTROLLER_HPP
diff --git a/src/openstudio_lib/LoadsTabController.cpp b/src/openstudio_lib/LoadsTabController.cpp
index d49a53726..6ec5f17d5 100644
--- a/src/openstudio_lib/LoadsTabController.cpp
+++ b/src/openstudio_lib/LoadsTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LoadsTabController.hpp"
diff --git a/src/openstudio_lib/LoadsTabController.hpp b/src/openstudio_lib/LoadsTabController.hpp
index c63768756..04f68648a 100644
--- a/src/openstudio_lib/LoadsTabController.hpp
+++ b/src/openstudio_lib/LoadsTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LOADSTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/LoadsTabView.cpp b/src/openstudio_lib/LoadsTabView.cpp
index a96ee63dc..b9d299bcf 100644
--- a/src/openstudio_lib/LoadsTabView.cpp
+++ b/src/openstudio_lib/LoadsTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LoadsTabView.hpp"
diff --git a/src/openstudio_lib/LoadsTabView.hpp b/src/openstudio_lib/LoadsTabView.hpp
index dc8c131be..621cc52c2 100644
--- a/src/openstudio_lib/LoadsTabView.hpp
+++ b/src/openstudio_lib/LoadsTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LOADSTABVIEW_HPP
diff --git a/src/openstudio_lib/LoadsView.cpp b/src/openstudio_lib/LoadsView.cpp
index 10a4db253..2a35862a6 100644
--- a/src/openstudio_lib/LoadsView.cpp
+++ b/src/openstudio_lib/LoadsView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LoadsView.hpp"
diff --git a/src/openstudio_lib/LoadsView.hpp b/src/openstudio_lib/LoadsView.hpp
index f90280408..4730c4e82 100644
--- a/src/openstudio_lib/LoadsView.hpp
+++ b/src/openstudio_lib/LoadsView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LOADSVIEW_HPP
diff --git a/src/openstudio_lib/LocationTabController.cpp b/src/openstudio_lib/LocationTabController.cpp
index aeef9b20c..b3efae7df 100644
--- a/src/openstudio_lib/LocationTabController.cpp
+++ b/src/openstudio_lib/LocationTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LocationTabController.hpp"
diff --git a/src/openstudio_lib/LocationTabController.hpp b/src/openstudio_lib/LocationTabController.hpp
index e42292832..caae431b0 100644
--- a/src/openstudio_lib/LocationTabController.hpp
+++ b/src/openstudio_lib/LocationTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LOCATIONTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/LocationTabView.cpp b/src/openstudio_lib/LocationTabView.cpp
index c962e46ba..4b778957c 100644
--- a/src/openstudio_lib/LocationTabView.cpp
+++ b/src/openstudio_lib/LocationTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LocationTabView.hpp"
diff --git a/src/openstudio_lib/LocationTabView.hpp b/src/openstudio_lib/LocationTabView.hpp
index 3ab854b7d..b733e3d67 100644
--- a/src/openstudio_lib/LocationTabView.hpp
+++ b/src/openstudio_lib/LocationTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LOCATIONTABVIEW_HPP
diff --git a/src/openstudio_lib/LoopChooserView.cpp b/src/openstudio_lib/LoopChooserView.cpp
index 678036cc1..98040ed62 100644
--- a/src/openstudio_lib/LoopChooserView.cpp
+++ b/src/openstudio_lib/LoopChooserView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LoopChooserView.hpp"
diff --git a/src/openstudio_lib/LoopChooserView.hpp b/src/openstudio_lib/LoopChooserView.hpp
index 752b518ea..ac702141e 100644
--- a/src/openstudio_lib/LoopChooserView.hpp
+++ b/src/openstudio_lib/LoopChooserView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LOOPCHOOSERVIEW_HPP
diff --git a/src/openstudio_lib/LoopLibraryDialog.cpp b/src/openstudio_lib/LoopLibraryDialog.cpp
index b4bd18366..d9d894f9b 100644
--- a/src/openstudio_lib/LoopLibraryDialog.cpp
+++ b/src/openstudio_lib/LoopLibraryDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LoopLibraryDialog.hpp"
diff --git a/src/openstudio_lib/LoopLibraryDialog.hpp b/src/openstudio_lib/LoopLibraryDialog.hpp
index 0309d88e7..e2650a7c1 100644
--- a/src/openstudio_lib/LoopLibraryDialog.hpp
+++ b/src/openstudio_lib/LoopLibraryDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LOOPLIBRARYDIALOG_HPP
diff --git a/src/openstudio_lib/LoopScene.cpp b/src/openstudio_lib/LoopScene.cpp
index 1e4649267..97cc2bf3c 100644
--- a/src/openstudio_lib/LoopScene.cpp
+++ b/src/openstudio_lib/LoopScene.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LoopScene.hpp"
diff --git a/src/openstudio_lib/LoopScene.hpp b/src/openstudio_lib/LoopScene.hpp
index 86dd69580..020608be3 100644
--- a/src/openstudio_lib/LoopScene.hpp
+++ b/src/openstudio_lib/LoopScene.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LOOPSCENE_HPP
diff --git a/src/openstudio_lib/LuminaireInspectorView.cpp b/src/openstudio_lib/LuminaireInspectorView.cpp
index 42d5fbf66..de1bdfd4a 100644
--- a/src/openstudio_lib/LuminaireInspectorView.cpp
+++ b/src/openstudio_lib/LuminaireInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LuminaireInspectorView.hpp"
diff --git a/src/openstudio_lib/LuminaireInspectorView.hpp b/src/openstudio_lib/LuminaireInspectorView.hpp
index 7312e38e4..16f7d9e9d 100644
--- a/src/openstudio_lib/LuminaireInspectorView.hpp
+++ b/src/openstudio_lib/LuminaireInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_LUMINAIREINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/MainMenu.cpp b/src/openstudio_lib/MainMenu.cpp
index 24c3e45f5..7aac5fa72 100644
--- a/src/openstudio_lib/MainMenu.cpp
+++ b/src/openstudio_lib/MainMenu.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MainMenu.hpp"
diff --git a/src/openstudio_lib/MainMenu.hpp b/src/openstudio_lib/MainMenu.hpp
index 5d8617d84..d5144fed7 100644
--- a/src/openstudio_lib/MainMenu.hpp
+++ b/src/openstudio_lib/MainMenu.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MAINMENU_HPP
diff --git a/src/openstudio_lib/MainRightColumnController.cpp b/src/openstudio_lib/MainRightColumnController.cpp
index d7ea7e819..78a02c253 100644
--- a/src/openstudio_lib/MainRightColumnController.cpp
+++ b/src/openstudio_lib/MainRightColumnController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MainRightColumnController.hpp"
diff --git a/src/openstudio_lib/MainRightColumnController.hpp b/src/openstudio_lib/MainRightColumnController.hpp
index b4fd0a417..5f49abd0f 100644
--- a/src/openstudio_lib/MainRightColumnController.hpp
+++ b/src/openstudio_lib/MainRightColumnController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MAINRIGHTCOLUMNCONTROLLER_HPP
diff --git a/src/openstudio_lib/MainTabController.cpp b/src/openstudio_lib/MainTabController.cpp
index 119f92b31..2bd3ac065 100644
--- a/src/openstudio_lib/MainTabController.cpp
+++ b/src/openstudio_lib/MainTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MainTabController.hpp"
diff --git a/src/openstudio_lib/MainTabController.hpp b/src/openstudio_lib/MainTabController.hpp
index 4993d983f..0ef86cae7 100644
--- a/src/openstudio_lib/MainTabController.hpp
+++ b/src/openstudio_lib/MainTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MAINTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/MainTabView.cpp b/src/openstudio_lib/MainTabView.cpp
index 75ebefb93..65533d94b 100644
--- a/src/openstudio_lib/MainTabView.cpp
+++ b/src/openstudio_lib/MainTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MainTabView.hpp"
diff --git a/src/openstudio_lib/MainTabView.hpp b/src/openstudio_lib/MainTabView.hpp
index fb360043c..a9f81bf44 100644
--- a/src/openstudio_lib/MainTabView.hpp
+++ b/src/openstudio_lib/MainTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MAINTABVIEW_HPP
diff --git a/src/openstudio_lib/MainWindow.cpp b/src/openstudio_lib/MainWindow.cpp
index ea736b797..94aae1e0c 100644
--- a/src/openstudio_lib/MainWindow.cpp
+++ b/src/openstudio_lib/MainWindow.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MainWindow.hpp"
diff --git a/src/openstudio_lib/MainWindow.hpp b/src/openstudio_lib/MainWindow.hpp
index 7708841c5..84061a83d 100644
--- a/src/openstudio_lib/MainWindow.hpp
+++ b/src/openstudio_lib/MainWindow.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MAINWINDOW_HPP
diff --git a/src/openstudio_lib/MaterialAirGapInspectorView.cpp b/src/openstudio_lib/MaterialAirGapInspectorView.cpp
index c2664e8de..aecd1133a 100644
--- a/src/openstudio_lib/MaterialAirGapInspectorView.cpp
+++ b/src/openstudio_lib/MaterialAirGapInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MaterialAirGapInspectorView.hpp"
diff --git a/src/openstudio_lib/MaterialAirGapInspectorView.hpp b/src/openstudio_lib/MaterialAirGapInspectorView.hpp
index e526be01c..b84d346e3 100644
--- a/src/openstudio_lib/MaterialAirGapInspectorView.hpp
+++ b/src/openstudio_lib/MaterialAirGapInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MATERIALAIRGAPINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/MaterialInfraredTransparentInspectorView.cpp b/src/openstudio_lib/MaterialInfraredTransparentInspectorView.cpp
index 3ac896660..4b2e4d754 100644
--- a/src/openstudio_lib/MaterialInfraredTransparentInspectorView.cpp
+++ b/src/openstudio_lib/MaterialInfraredTransparentInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MaterialInfraredTransparentInspectorView.hpp"
diff --git a/src/openstudio_lib/MaterialInfraredTransparentInspectorView.hpp b/src/openstudio_lib/MaterialInfraredTransparentInspectorView.hpp
index b3964e330..4b621f09b 100644
--- a/src/openstudio_lib/MaterialInfraredTransparentInspectorView.hpp
+++ b/src/openstudio_lib/MaterialInfraredTransparentInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MATERIALINFRAREDTRANSPARENTINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/MaterialInspectorView.cpp b/src/openstudio_lib/MaterialInspectorView.cpp
index 7d3c19bb9..d62105a9e 100644
--- a/src/openstudio_lib/MaterialInspectorView.cpp
+++ b/src/openstudio_lib/MaterialInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MaterialInspectorView.hpp"
diff --git a/src/openstudio_lib/MaterialInspectorView.hpp b/src/openstudio_lib/MaterialInspectorView.hpp
index 9504a82cc..18e059882 100644
--- a/src/openstudio_lib/MaterialInspectorView.hpp
+++ b/src/openstudio_lib/MaterialInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MATERIALINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/MaterialNoMassInspectorView.cpp b/src/openstudio_lib/MaterialNoMassInspectorView.cpp
index 7e649c6e7..c3102f177 100644
--- a/src/openstudio_lib/MaterialNoMassInspectorView.cpp
+++ b/src/openstudio_lib/MaterialNoMassInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MaterialNoMassInspectorView.hpp"
diff --git a/src/openstudio_lib/MaterialNoMassInspectorView.hpp b/src/openstudio_lib/MaterialNoMassInspectorView.hpp
index cfd9cadf9..f1a767d75 100644
--- a/src/openstudio_lib/MaterialNoMassInspectorView.hpp
+++ b/src/openstudio_lib/MaterialNoMassInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MATERIALNOMASSINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/MaterialRoofVegetationInspectorView.cpp b/src/openstudio_lib/MaterialRoofVegetationInspectorView.cpp
index daa0df219..45ea527f7 100644
--- a/src/openstudio_lib/MaterialRoofVegetationInspectorView.cpp
+++ b/src/openstudio_lib/MaterialRoofVegetationInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MaterialRoofVegetationInspectorView.hpp"
diff --git a/src/openstudio_lib/MaterialRoofVegetationInspectorView.hpp b/src/openstudio_lib/MaterialRoofVegetationInspectorView.hpp
index c6fd003ac..8fea89e13 100644
--- a/src/openstudio_lib/MaterialRoofVegetationInspectorView.hpp
+++ b/src/openstudio_lib/MaterialRoofVegetationInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MATERIALROOFVEGETATIONINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/MaterialsController.cpp b/src/openstudio_lib/MaterialsController.cpp
index 1627f9b73..bfc5245e2 100644
--- a/src/openstudio_lib/MaterialsController.cpp
+++ b/src/openstudio_lib/MaterialsController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MaterialsController.hpp"
diff --git a/src/openstudio_lib/MaterialsController.hpp b/src/openstudio_lib/MaterialsController.hpp
index a53d5bb2d..d5f171edf 100644
--- a/src/openstudio_lib/MaterialsController.hpp
+++ b/src/openstudio_lib/MaterialsController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MATERIALSCONTROLLER_HPP
diff --git a/src/openstudio_lib/MaterialsView.cpp b/src/openstudio_lib/MaterialsView.cpp
index c3f1d5d9a..9eb763d2d 100644
--- a/src/openstudio_lib/MaterialsView.cpp
+++ b/src/openstudio_lib/MaterialsView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MaterialsView.hpp"
diff --git a/src/openstudio_lib/MaterialsView.hpp b/src/openstudio_lib/MaterialsView.hpp
index aae779754..bd938d05d 100644
--- a/src/openstudio_lib/MaterialsView.hpp
+++ b/src/openstudio_lib/MaterialsView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MATERIALSVIEW_HPP
diff --git a/src/openstudio_lib/ModelObjectInspectorView.cpp b/src/openstudio_lib/ModelObjectInspectorView.cpp
index 332fbe52c..bb943446e 100644
--- a/src/openstudio_lib/ModelObjectInspectorView.cpp
+++ b/src/openstudio_lib/ModelObjectInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelObjectInspectorView.hpp"
diff --git a/src/openstudio_lib/ModelObjectInspectorView.hpp b/src/openstudio_lib/ModelObjectInspectorView.hpp
index d5de0a7b5..ecd68610f 100644
--- a/src/openstudio_lib/ModelObjectInspectorView.hpp
+++ b/src/openstudio_lib/ModelObjectInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELOBJECTINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ModelObjectItem.cpp b/src/openstudio_lib/ModelObjectItem.cpp
index 3a8321304..a95d3047d 100644
--- a/src/openstudio_lib/ModelObjectItem.cpp
+++ b/src/openstudio_lib/ModelObjectItem.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelObjectItem.hpp"
diff --git a/src/openstudio_lib/ModelObjectItem.hpp b/src/openstudio_lib/ModelObjectItem.hpp
index d07d915bf..097879c1b 100644
--- a/src/openstudio_lib/ModelObjectItem.hpp
+++ b/src/openstudio_lib/ModelObjectItem.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELOBJECTITEM_HPP
diff --git a/src/openstudio_lib/ModelObjectListView.cpp b/src/openstudio_lib/ModelObjectListView.cpp
index 82ce4c055..b2f66843b 100644
--- a/src/openstudio_lib/ModelObjectListView.cpp
+++ b/src/openstudio_lib/ModelObjectListView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelObjectListView.hpp"
diff --git a/src/openstudio_lib/ModelObjectListView.hpp b/src/openstudio_lib/ModelObjectListView.hpp
index 75f3fc2f2..ed53b3f27 100644
--- a/src/openstudio_lib/ModelObjectListView.hpp
+++ b/src/openstudio_lib/ModelObjectListView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELOBJECTLISTVIEW_HPP
diff --git a/src/openstudio_lib/ModelObjectTreeItems.cpp b/src/openstudio_lib/ModelObjectTreeItems.cpp
index 15f256549..c7012a2ff 100644
--- a/src/openstudio_lib/ModelObjectTreeItems.cpp
+++ b/src/openstudio_lib/ModelObjectTreeItems.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelObjectTreeItems.hpp"
diff --git a/src/openstudio_lib/ModelObjectTreeItems.hpp b/src/openstudio_lib/ModelObjectTreeItems.hpp
index ba852f460..a77ef72c7 100644
--- a/src/openstudio_lib/ModelObjectTreeItems.hpp
+++ b/src/openstudio_lib/ModelObjectTreeItems.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELOBJECTTREEITEMS_HPP
diff --git a/src/openstudio_lib/ModelObjectTreeWidget.cpp b/src/openstudio_lib/ModelObjectTreeWidget.cpp
index 5e5e41e0c..109b1b450 100644
--- a/src/openstudio_lib/ModelObjectTreeWidget.cpp
+++ b/src/openstudio_lib/ModelObjectTreeWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelObjectTreeWidget.hpp"
diff --git a/src/openstudio_lib/ModelObjectTreeWidget.hpp b/src/openstudio_lib/ModelObjectTreeWidget.hpp
index 4c7d486f5..c343869d3 100644
--- a/src/openstudio_lib/ModelObjectTreeWidget.hpp
+++ b/src/openstudio_lib/ModelObjectTreeWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELOBJECTTREEWIDGET_HPP
diff --git a/src/openstudio_lib/ModelObjectTypeItem.cpp b/src/openstudio_lib/ModelObjectTypeItem.cpp
index 8434f4dd5..9b4de05e0 100644
--- a/src/openstudio_lib/ModelObjectTypeItem.cpp
+++ b/src/openstudio_lib/ModelObjectTypeItem.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelObjectTypeItem.hpp"
diff --git a/src/openstudio_lib/ModelObjectTypeItem.hpp b/src/openstudio_lib/ModelObjectTypeItem.hpp
index 30586a03b..a3106432b 100644
--- a/src/openstudio_lib/ModelObjectTypeItem.hpp
+++ b/src/openstudio_lib/ModelObjectTypeItem.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELOBJECTTYPEITEM_HPP
diff --git a/src/openstudio_lib/ModelObjectTypeListView.cpp b/src/openstudio_lib/ModelObjectTypeListView.cpp
index 57a05d01c..292a3cab5 100644
--- a/src/openstudio_lib/ModelObjectTypeListView.cpp
+++ b/src/openstudio_lib/ModelObjectTypeListView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelObjectTypeListView.hpp"
diff --git a/src/openstudio_lib/ModelObjectTypeListView.hpp b/src/openstudio_lib/ModelObjectTypeListView.hpp
index 6213ec1ed..f3e48a93c 100644
--- a/src/openstudio_lib/ModelObjectTypeListView.hpp
+++ b/src/openstudio_lib/ModelObjectTypeListView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELOBJECTTYPELISTVIEW_HPP
diff --git a/src/openstudio_lib/ModelObjectVectorController.cpp b/src/openstudio_lib/ModelObjectVectorController.cpp
index 2b89917c1..fd240e963 100644
--- a/src/openstudio_lib/ModelObjectVectorController.cpp
+++ b/src/openstudio_lib/ModelObjectVectorController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelObjectVectorController.hpp"
diff --git a/src/openstudio_lib/ModelObjectVectorController.hpp b/src/openstudio_lib/ModelObjectVectorController.hpp
index 62a217e92..301d38276 100644
--- a/src/openstudio_lib/ModelObjectVectorController.hpp
+++ b/src/openstudio_lib/ModelObjectVectorController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELOBJECTVECTORCONTROLLER_HPP
diff --git a/src/openstudio_lib/ModelSubTabController.cpp b/src/openstudio_lib/ModelSubTabController.cpp
index 1a84f9516..880a048e6 100644
--- a/src/openstudio_lib/ModelSubTabController.cpp
+++ b/src/openstudio_lib/ModelSubTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelSubTabController.hpp"
diff --git a/src/openstudio_lib/ModelSubTabController.hpp b/src/openstudio_lib/ModelSubTabController.hpp
index 90372c4a7..64f993f02 100644
--- a/src/openstudio_lib/ModelSubTabController.hpp
+++ b/src/openstudio_lib/ModelSubTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELSUBTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/ModelSubTabView.cpp b/src/openstudio_lib/ModelSubTabView.cpp
index 132c6c5e4..aa2c3e5ae 100644
--- a/src/openstudio_lib/ModelSubTabView.cpp
+++ b/src/openstudio_lib/ModelSubTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ModelSubTabView.hpp"
diff --git a/src/openstudio_lib/ModelSubTabView.hpp b/src/openstudio_lib/ModelSubTabView.hpp
index 70977b083..eb63b4864 100644
--- a/src/openstudio_lib/ModelSubTabView.hpp
+++ b/src/openstudio_lib/ModelSubTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_MODELSUBTABVIEW_HPP
diff --git a/src/openstudio_lib/OSAppBase.cpp b/src/openstudio_lib/OSAppBase.cpp
index a92905e8e..ad13758b5 100644
--- a/src/openstudio_lib/OSAppBase.cpp
+++ b/src/openstudio_lib/OSAppBase.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSAppBase.hpp"
diff --git a/src/openstudio_lib/OSAppBase.hpp b/src/openstudio_lib/OSAppBase.hpp
index 08869b0ea..ab7bbb0c7 100644
--- a/src/openstudio_lib/OSAppBase.hpp
+++ b/src/openstudio_lib/OSAppBase.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSAPPBASE_HPP
diff --git a/src/openstudio_lib/OSCategoryPlaceholder.cpp b/src/openstudio_lib/OSCategoryPlaceholder.cpp
index f1317660c..c7705a6bc 100644
--- a/src/openstudio_lib/OSCategoryPlaceholder.cpp
+++ b/src/openstudio_lib/OSCategoryPlaceholder.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSCategoryPlaceholder.hpp"
diff --git a/src/openstudio_lib/OSCategoryPlaceholder.hpp b/src/openstudio_lib/OSCategoryPlaceholder.hpp
index aa85bec4b..8e320cd13 100644
--- a/src/openstudio_lib/OSCategoryPlaceholder.hpp
+++ b/src/openstudio_lib/OSCategoryPlaceholder.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSCATEGORYPLACEHOLDER_HPP
diff --git a/src/openstudio_lib/OSCollapsibleItem.cpp b/src/openstudio_lib/OSCollapsibleItem.cpp
index 5f66ad1e3..5562de5c5 100644
--- a/src/openstudio_lib/OSCollapsibleItem.cpp
+++ b/src/openstudio_lib/OSCollapsibleItem.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSCollapsibleItem.hpp"
diff --git a/src/openstudio_lib/OSCollapsibleItem.hpp b/src/openstudio_lib/OSCollapsibleItem.hpp
index 198eecda2..1d842f299 100644
--- a/src/openstudio_lib/OSCollapsibleItem.hpp
+++ b/src/openstudio_lib/OSCollapsibleItem.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSCOLLAPSIBLEITEM_HPP
diff --git a/src/openstudio_lib/OSCollapsibleItemHeader.cpp b/src/openstudio_lib/OSCollapsibleItemHeader.cpp
index b3ae9c1cb..462250aab 100644
--- a/src/openstudio_lib/OSCollapsibleItemHeader.cpp
+++ b/src/openstudio_lib/OSCollapsibleItemHeader.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSCollapsibleItemHeader.hpp"
diff --git a/src/openstudio_lib/OSCollapsibleItemHeader.hpp b/src/openstudio_lib/OSCollapsibleItemHeader.hpp
index f26f99514..14cafa455 100644
--- a/src/openstudio_lib/OSCollapsibleItemHeader.hpp
+++ b/src/openstudio_lib/OSCollapsibleItemHeader.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSCOLLAPSIBLEITEMHEADER_HPP
diff --git a/src/openstudio_lib/OSCollapsibleItemList.cpp b/src/openstudio_lib/OSCollapsibleItemList.cpp
index 3afc1b708..d03653354 100644
--- a/src/openstudio_lib/OSCollapsibleItemList.cpp
+++ b/src/openstudio_lib/OSCollapsibleItemList.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSCollapsibleItemList.hpp"
diff --git a/src/openstudio_lib/OSCollapsibleItemList.hpp b/src/openstudio_lib/OSCollapsibleItemList.hpp
index 24182a5d6..9ea3eb3e7 100644
--- a/src/openstudio_lib/OSCollapsibleItemList.hpp
+++ b/src/openstudio_lib/OSCollapsibleItemList.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSCOLLAPSIBLEITEMLIST_HPP
diff --git a/src/openstudio_lib/OSDocument.cpp b/src/openstudio_lib/OSDocument.cpp
index f25b0af96..f280c9f81 100644
--- a/src/openstudio_lib/OSDocument.cpp
+++ b/src/openstudio_lib/OSDocument.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSDocument.hpp"
diff --git a/src/openstudio_lib/OSDocument.hpp b/src/openstudio_lib/OSDocument.hpp
index a85f41ba9..b90673135 100644
--- a/src/openstudio_lib/OSDocument.hpp
+++ b/src/openstudio_lib/OSDocument.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSDOCUMENT_HPP
diff --git a/src/openstudio_lib/OSDropZone.cpp b/src/openstudio_lib/OSDropZone.cpp
index 8312d4f8c..ebef87824 100644
--- a/src/openstudio_lib/OSDropZone.cpp
+++ b/src/openstudio_lib/OSDropZone.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSDropZone.hpp"
diff --git a/src/openstudio_lib/OSDropZone.hpp b/src/openstudio_lib/OSDropZone.hpp
index 183ae7e6a..e71ae2cda 100644
--- a/src/openstudio_lib/OSDropZone.hpp
+++ b/src/openstudio_lib/OSDropZone.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSDROPZONE_HPP
diff --git a/src/openstudio_lib/OSInspectorView.cpp b/src/openstudio_lib/OSInspectorView.cpp
index b47af2555..e58227d9d 100644
--- a/src/openstudio_lib/OSInspectorView.cpp
+++ b/src/openstudio_lib/OSInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSInspectorView.hpp"
diff --git a/src/openstudio_lib/OSInspectorView.hpp b/src/openstudio_lib/OSInspectorView.hpp
index c13a20833..4689f0053 100644
--- a/src/openstudio_lib/OSInspectorView.hpp
+++ b/src/openstudio_lib/OSInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/OSItem.cpp b/src/openstudio_lib/OSItem.cpp
index a81c7962a..323865f60 100644
--- a/src/openstudio_lib/OSItem.cpp
+++ b/src/openstudio_lib/OSItem.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSItem.hpp"
diff --git a/src/openstudio_lib/OSItem.hpp b/src/openstudio_lib/OSItem.hpp
index e27cc7e21..1934e77bc 100644
--- a/src/openstudio_lib/OSItem.hpp
+++ b/src/openstudio_lib/OSItem.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSITEM_HPP
diff --git a/src/openstudio_lib/OSItemList.cpp b/src/openstudio_lib/OSItemList.cpp
index f03c29cb4..bb91298e3 100644
--- a/src/openstudio_lib/OSItemList.cpp
+++ b/src/openstudio_lib/OSItemList.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSItemList.hpp"
diff --git a/src/openstudio_lib/OSItemList.hpp b/src/openstudio_lib/OSItemList.hpp
index 922103845..55d3e2146 100644
--- a/src/openstudio_lib/OSItemList.hpp
+++ b/src/openstudio_lib/OSItemList.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSITEMLIST_HPP
diff --git a/src/openstudio_lib/OSItemSelector.cpp b/src/openstudio_lib/OSItemSelector.cpp
index 670f14111..c7cd20ec3 100644
--- a/src/openstudio_lib/OSItemSelector.cpp
+++ b/src/openstudio_lib/OSItemSelector.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSItemSelector.hpp"
diff --git a/src/openstudio_lib/OSItemSelector.hpp b/src/openstudio_lib/OSItemSelector.hpp
index b5b1cffd4..f613f7a25 100644
--- a/src/openstudio_lib/OSItemSelector.hpp
+++ b/src/openstudio_lib/OSItemSelector.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSITEMSELECTOR_HPP
diff --git a/src/openstudio_lib/OSItemSelectorButtons.cpp b/src/openstudio_lib/OSItemSelectorButtons.cpp
index 13031e36e..b4b4bd317 100644
--- a/src/openstudio_lib/OSItemSelectorButtons.cpp
+++ b/src/openstudio_lib/OSItemSelectorButtons.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSItemSelectorButtons.hpp"
diff --git a/src/openstudio_lib/OSItemSelectorButtons.hpp b/src/openstudio_lib/OSItemSelectorButtons.hpp
index 696cef1c3..f1f992a84 100644
--- a/src/openstudio_lib/OSItemSelectorButtons.hpp
+++ b/src/openstudio_lib/OSItemSelectorButtons.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSITEMSELECTORBUTTONS_HPP
diff --git a/src/openstudio_lib/OSVectorController.cpp b/src/openstudio_lib/OSVectorController.cpp
index fb933bb4b..9aaf0e793 100644
--- a/src/openstudio_lib/OSVectorController.cpp
+++ b/src/openstudio_lib/OSVectorController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSVectorController.hpp"
diff --git a/src/openstudio_lib/OSVectorController.hpp b/src/openstudio_lib/OSVectorController.hpp
index 92f29c4d1..d2c8ad453 100644
--- a/src/openstudio_lib/OSVectorController.hpp
+++ b/src/openstudio_lib/OSVectorController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSVECTORCONTROLLER_HPP
diff --git a/src/openstudio_lib/OSWebEnginePage.cpp b/src/openstudio_lib/OSWebEnginePage.cpp
index ae5838d9c..9433bc84b 100644
--- a/src/openstudio_lib/OSWebEnginePage.cpp
+++ b/src/openstudio_lib/OSWebEnginePage.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSWebEnginePage.hpp"
diff --git a/src/openstudio_lib/OSWebEnginePage.hpp b/src/openstudio_lib/OSWebEnginePage.hpp
index 4bfb4ea76..2f82c5eaf 100644
--- a/src/openstudio_lib/OSWebEnginePage.hpp
+++ b/src/openstudio_lib/OSWebEnginePage.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OSWEBENGINEPAGE_HPP
diff --git a/src/openstudio_lib/OpenStudioAPI.hpp b/src/openstudio_lib/OpenStudioAPI.hpp
index bc31890e0..cb6af4ee4 100644
--- a/src/openstudio_lib/OpenStudioAPI.hpp
+++ b/src/openstudio_lib/OpenStudioAPI.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OPENSTUDIOAPI_HPP
diff --git a/src/openstudio_lib/OtherEquipmentInspectorView.cpp b/src/openstudio_lib/OtherEquipmentInspectorView.cpp
index 40ec1fb9c..865b8086b 100644
--- a/src/openstudio_lib/OtherEquipmentInspectorView.cpp
+++ b/src/openstudio_lib/OtherEquipmentInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OtherEquipmentInspectorView.hpp"
diff --git a/src/openstudio_lib/OtherEquipmentInspectorView.hpp b/src/openstudio_lib/OtherEquipmentInspectorView.hpp
index bd975de72..94f6d8d80 100644
--- a/src/openstudio_lib/OtherEquipmentInspectorView.hpp
+++ b/src/openstudio_lib/OtherEquipmentInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_OTHEREQUIPMENTINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/PeopleInspectorView.cpp b/src/openstudio_lib/PeopleInspectorView.cpp
index ad4a79873..60f6e69b4 100644
--- a/src/openstudio_lib/PeopleInspectorView.cpp
+++ b/src/openstudio_lib/PeopleInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "PeopleInspectorView.hpp"
diff --git a/src/openstudio_lib/PeopleInspectorView.hpp b/src/openstudio_lib/PeopleInspectorView.hpp
index 52ba8b949..edb9c2b4f 100644
--- a/src/openstudio_lib/PeopleInspectorView.hpp
+++ b/src/openstudio_lib/PeopleInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_PEOPLEINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/PlanarSurfaceWidget.cpp b/src/openstudio_lib/PlanarSurfaceWidget.cpp
index dc15867b9..60196e383 100644
--- a/src/openstudio_lib/PlanarSurfaceWidget.cpp
+++ b/src/openstudio_lib/PlanarSurfaceWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "PlanarSurfaceWidget.hpp"
diff --git a/src/openstudio_lib/PlanarSurfaceWidget.hpp b/src/openstudio_lib/PlanarSurfaceWidget.hpp
index 0cddb3be4..07225106a 100644
--- a/src/openstudio_lib/PlanarSurfaceWidget.hpp
+++ b/src/openstudio_lib/PlanarSurfaceWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_PLANARSURFACEWIDGET_HPP
diff --git a/src/openstudio_lib/RadianceDialog.cpp b/src/openstudio_lib/RadianceDialog.cpp
index 11f407897..de189014d 100644
--- a/src/openstudio_lib/RadianceDialog.cpp
+++ b/src/openstudio_lib/RadianceDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "RadianceDialog.hpp"
diff --git a/src/openstudio_lib/RadianceDialog.hpp b/src/openstudio_lib/RadianceDialog.hpp
index 91cd1a282..64c6fce77 100644
--- a/src/openstudio_lib/RadianceDialog.hpp
+++ b/src/openstudio_lib/RadianceDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_RADIANCEDIALOG_HPP
diff --git a/src/openstudio_lib/RefrigerationController.cpp b/src/openstudio_lib/RefrigerationController.cpp
index 6145bae16..f3fc10e18 100644
--- a/src/openstudio_lib/RefrigerationController.cpp
+++ b/src/openstudio_lib/RefrigerationController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "RefrigerationController.hpp"
diff --git a/src/openstudio_lib/RefrigerationController.hpp b/src/openstudio_lib/RefrigerationController.hpp
index 7728cbbe4..c52e63c7f 100644
--- a/src/openstudio_lib/RefrigerationController.hpp
+++ b/src/openstudio_lib/RefrigerationController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_REFRIGERATIONCONTROLLER_HPP
diff --git a/src/openstudio_lib/RefrigerationGraphicsItems.cpp b/src/openstudio_lib/RefrigerationGraphicsItems.cpp
index ceae2950b..0833c65c4 100644
--- a/src/openstudio_lib/RefrigerationGraphicsItems.cpp
+++ b/src/openstudio_lib/RefrigerationGraphicsItems.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSItem.hpp"
diff --git a/src/openstudio_lib/RefrigerationGraphicsItems.hpp b/src/openstudio_lib/RefrigerationGraphicsItems.hpp
index 762d3340a..84de064aa 100644
--- a/src/openstudio_lib/RefrigerationGraphicsItems.hpp
+++ b/src/openstudio_lib/RefrigerationGraphicsItems.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_REFRIGERATIONGRAPHICSITEMS_HPP
diff --git a/src/openstudio_lib/RefrigerationGridController.cpp b/src/openstudio_lib/RefrigerationGridController.cpp
index b8bb384e4..5e188a8fd 100644
--- a/src/openstudio_lib/RefrigerationGridController.cpp
+++ b/src/openstudio_lib/RefrigerationGridController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "RefrigerationGridController.hpp"
diff --git a/src/openstudio_lib/RefrigerationGridController.hpp b/src/openstudio_lib/RefrigerationGridController.hpp
index ee19f43e5..52d8e7468 100644
--- a/src/openstudio_lib/RefrigerationGridController.hpp
+++ b/src/openstudio_lib/RefrigerationGridController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_REFRIGERATIONGRIDCONTROLLER_HPP
diff --git a/src/openstudio_lib/RefrigerationGridView.cpp b/src/openstudio_lib/RefrigerationGridView.cpp
index c5443323b..280928fd0 100644
--- a/src/openstudio_lib/RefrigerationGridView.cpp
+++ b/src/openstudio_lib/RefrigerationGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "RefrigerationGridView.hpp"
diff --git a/src/openstudio_lib/RefrigerationGridView.hpp b/src/openstudio_lib/RefrigerationGridView.hpp
index dbcfe530f..bd34f5f8c 100644
--- a/src/openstudio_lib/RefrigerationGridView.hpp
+++ b/src/openstudio_lib/RefrigerationGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_REFRIGERATIONGRIDVIEW_HPP
diff --git a/src/openstudio_lib/RefrigerationScene.cpp b/src/openstudio_lib/RefrigerationScene.cpp
index 59a90db1e..fe0be50c5 100644
--- a/src/openstudio_lib/RefrigerationScene.cpp
+++ b/src/openstudio_lib/RefrigerationScene.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "RefrigerationScene.hpp"
diff --git a/src/openstudio_lib/RefrigerationScene.hpp b/src/openstudio_lib/RefrigerationScene.hpp
index b70968909..3ee237773 100644
--- a/src/openstudio_lib/RefrigerationScene.hpp
+++ b/src/openstudio_lib/RefrigerationScene.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_REFRIGERATIONSCENE_HPP
diff --git a/src/openstudio_lib/RenderingColorWidget.cpp b/src/openstudio_lib/RenderingColorWidget.cpp
index 68fc8effc..06ca54339 100644
--- a/src/openstudio_lib/RenderingColorWidget.cpp
+++ b/src/openstudio_lib/RenderingColorWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "RenderingColorWidget.hpp"
diff --git a/src/openstudio_lib/RenderingColorWidget.hpp b/src/openstudio_lib/RenderingColorWidget.hpp
index c3044a99f..a844b8e00 100644
--- a/src/openstudio_lib/RenderingColorWidget.hpp
+++ b/src/openstudio_lib/RenderingColorWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_RENDERINGCOLORWIDGET_HPP
diff --git a/src/openstudio_lib/ResultsTabController.cpp b/src/openstudio_lib/ResultsTabController.cpp
index 74ee536b6..058b11df5 100644
--- a/src/openstudio_lib/ResultsTabController.cpp
+++ b/src/openstudio_lib/ResultsTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ResultsTabController.hpp"
diff --git a/src/openstudio_lib/ResultsTabController.hpp b/src/openstudio_lib/ResultsTabController.hpp
index 10a8a5dd6..d5ff6d19e 100644
--- a/src/openstudio_lib/ResultsTabController.hpp
+++ b/src/openstudio_lib/ResultsTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_RESULTSTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/ResultsTabView.cpp b/src/openstudio_lib/ResultsTabView.cpp
index bb38a9550..564739a2b 100644
--- a/src/openstudio_lib/ResultsTabView.cpp
+++ b/src/openstudio_lib/ResultsTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ResultsTabView.hpp"
diff --git a/src/openstudio_lib/ResultsTabView.hpp b/src/openstudio_lib/ResultsTabView.hpp
index 2034bbe40..0fc5e8365 100644
--- a/src/openstudio_lib/ResultsTabView.hpp
+++ b/src/openstudio_lib/ResultsTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_RESULTSTABVIEW_HPP
diff --git a/src/openstudio_lib/RunTabController.cpp b/src/openstudio_lib/RunTabController.cpp
index 51c19e96f..901fe899e 100644
--- a/src/openstudio_lib/RunTabController.cpp
+++ b/src/openstudio_lib/RunTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "RunTabController.hpp"
diff --git a/src/openstudio_lib/RunTabController.hpp b/src/openstudio_lib/RunTabController.hpp
index ca915e772..96186d62b 100644
--- a/src/openstudio_lib/RunTabController.hpp
+++ b/src/openstudio_lib/RunTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_RUNTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/RunTabView.cpp b/src/openstudio_lib/RunTabView.cpp
index d65cbaea8..584268add 100644
--- a/src/openstudio_lib/RunTabView.cpp
+++ b/src/openstudio_lib/RunTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "RunTabView.hpp"
diff --git a/src/openstudio_lib/RunTabView.hpp b/src/openstudio_lib/RunTabView.hpp
index f82294452..d452fadd9 100644
--- a/src/openstudio_lib/RunTabView.hpp
+++ b/src/openstudio_lib/RunTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_RUNTABVIEW_HPP
diff --git a/src/openstudio_lib/SOConstants.hpp b/src/openstudio_lib/SOConstants.hpp
index 08a58c4c2..462356709 100644
--- a/src/openstudio_lib/SOConstants.hpp
+++ b/src/openstudio_lib/SOConstants.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SOCONSTANTS_HPP
diff --git a/src/openstudio_lib/ScheduleCompactInspectorView.cpp b/src/openstudio_lib/ScheduleCompactInspectorView.cpp
index c43835b28..a5c2baf8e 100644
--- a/src/openstudio_lib/ScheduleCompactInspectorView.cpp
+++ b/src/openstudio_lib/ScheduleCompactInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleCompactInspectorView.hpp"
diff --git a/src/openstudio_lib/ScheduleCompactInspectorView.hpp b/src/openstudio_lib/ScheduleCompactInspectorView.hpp
index 504ad3813..35d0c7bfd 100644
--- a/src/openstudio_lib/ScheduleCompactInspectorView.hpp
+++ b/src/openstudio_lib/ScheduleCompactInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULECOMPACTINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ScheduleConstantInspectorView.cpp b/src/openstudio_lib/ScheduleConstantInspectorView.cpp
index ff7d58313..8f97db9b8 100644
--- a/src/openstudio_lib/ScheduleConstantInspectorView.cpp
+++ b/src/openstudio_lib/ScheduleConstantInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleConstantInspectorView.hpp"
diff --git a/src/openstudio_lib/ScheduleConstantInspectorView.hpp b/src/openstudio_lib/ScheduleConstantInspectorView.hpp
index 0046593da..f1f2ebead 100644
--- a/src/openstudio_lib/ScheduleConstantInspectorView.hpp
+++ b/src/openstudio_lib/ScheduleConstantInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULECONSTANTINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ScheduleDayView.cpp b/src/openstudio_lib/ScheduleDayView.cpp
index 4ac59f944..94702e9bc 100644
--- a/src/openstudio_lib/ScheduleDayView.cpp
+++ b/src/openstudio_lib/ScheduleDayView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleDayView.hpp"
diff --git a/src/openstudio_lib/ScheduleDayView.hpp b/src/openstudio_lib/ScheduleDayView.hpp
index 022abaa41..4d8997444 100644
--- a/src/openstudio_lib/ScheduleDayView.hpp
+++ b/src/openstudio_lib/ScheduleDayView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULEDAYVIEW_HPP
diff --git a/src/openstudio_lib/ScheduleDialog.cpp b/src/openstudio_lib/ScheduleDialog.cpp
index 64468b7db..4f1faa273 100644
--- a/src/openstudio_lib/ScheduleDialog.cpp
+++ b/src/openstudio_lib/ScheduleDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleDialog.hpp"
diff --git a/src/openstudio_lib/ScheduleDialog.hpp b/src/openstudio_lib/ScheduleDialog.hpp
index e08855ff8..8156f7859 100644
--- a/src/openstudio_lib/ScheduleDialog.hpp
+++ b/src/openstudio_lib/ScheduleDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULEDIALOG_HPP
diff --git a/src/openstudio_lib/ScheduleFileInspectorView.cpp b/src/openstudio_lib/ScheduleFileInspectorView.cpp
index 9b3476713..150ab0e7c 100644
--- a/src/openstudio_lib/ScheduleFileInspectorView.cpp
+++ b/src/openstudio_lib/ScheduleFileInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleFileInspectorView.hpp"
diff --git a/src/openstudio_lib/ScheduleFileInspectorView.hpp b/src/openstudio_lib/ScheduleFileInspectorView.hpp
index e11f02446..eb6e52009 100644
--- a/src/openstudio_lib/ScheduleFileInspectorView.hpp
+++ b/src/openstudio_lib/ScheduleFileInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULEFILEINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ScheduleOthersController.cpp b/src/openstudio_lib/ScheduleOthersController.cpp
index 6312f9048..f1f3b75ea 100644
--- a/src/openstudio_lib/ScheduleOthersController.cpp
+++ b/src/openstudio_lib/ScheduleOthersController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleOthersController.hpp"
diff --git a/src/openstudio_lib/ScheduleOthersController.hpp b/src/openstudio_lib/ScheduleOthersController.hpp
index f82e01d26..7fa87c16b 100644
--- a/src/openstudio_lib/ScheduleOthersController.hpp
+++ b/src/openstudio_lib/ScheduleOthersController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULEOTHERSCONTROLLER_HPP
diff --git a/src/openstudio_lib/ScheduleOthersView.cpp b/src/openstudio_lib/ScheduleOthersView.cpp
index 84e6633b2..33c449133 100644
--- a/src/openstudio_lib/ScheduleOthersView.cpp
+++ b/src/openstudio_lib/ScheduleOthersView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleOthersView.hpp"
diff --git a/src/openstudio_lib/ScheduleOthersView.hpp b/src/openstudio_lib/ScheduleOthersView.hpp
index b737d979c..c57e830c0 100644
--- a/src/openstudio_lib/ScheduleOthersView.hpp
+++ b/src/openstudio_lib/ScheduleOthersView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULEOTHERSVIEW_HPP
diff --git a/src/openstudio_lib/ScheduleSetInspectorView.cpp b/src/openstudio_lib/ScheduleSetInspectorView.cpp
index c93ec6b97..801d55c12 100644
--- a/src/openstudio_lib/ScheduleSetInspectorView.cpp
+++ b/src/openstudio_lib/ScheduleSetInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleSetInspectorView.hpp"
diff --git a/src/openstudio_lib/ScheduleSetInspectorView.hpp b/src/openstudio_lib/ScheduleSetInspectorView.hpp
index 3cac50744..15f96ce69 100644
--- a/src/openstudio_lib/ScheduleSetInspectorView.hpp
+++ b/src/openstudio_lib/ScheduleSetInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULESETINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/ScheduleSetsController.cpp b/src/openstudio_lib/ScheduleSetsController.cpp
index a0eb106b1..18c3db110 100644
--- a/src/openstudio_lib/ScheduleSetsController.cpp
+++ b/src/openstudio_lib/ScheduleSetsController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleSetsController.hpp"
diff --git a/src/openstudio_lib/ScheduleSetsController.hpp b/src/openstudio_lib/ScheduleSetsController.hpp
index 1f9790525..44461dc01 100644
--- a/src/openstudio_lib/ScheduleSetsController.hpp
+++ b/src/openstudio_lib/ScheduleSetsController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULESETSCONTROLLER_HPP
diff --git a/src/openstudio_lib/ScheduleSetsView.cpp b/src/openstudio_lib/ScheduleSetsView.cpp
index dc6988d47..76a733e0f 100644
--- a/src/openstudio_lib/ScheduleSetsView.cpp
+++ b/src/openstudio_lib/ScheduleSetsView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScheduleSetsView.hpp"
diff --git a/src/openstudio_lib/ScheduleSetsView.hpp b/src/openstudio_lib/ScheduleSetsView.hpp
index 0d5ae3518..dc1b9a5d9 100644
--- a/src/openstudio_lib/ScheduleSetsView.hpp
+++ b/src/openstudio_lib/ScheduleSetsView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULESETSVIEW_HPP
diff --git a/src/openstudio_lib/SchedulesTabController.cpp b/src/openstudio_lib/SchedulesTabController.cpp
index 00de7b2c5..371b8522f 100644
--- a/src/openstudio_lib/SchedulesTabController.cpp
+++ b/src/openstudio_lib/SchedulesTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SchedulesTabController.hpp"
diff --git a/src/openstudio_lib/SchedulesTabController.hpp b/src/openstudio_lib/SchedulesTabController.hpp
index ebc4083ba..e5b19dcf0 100644
--- a/src/openstudio_lib/SchedulesTabController.hpp
+++ b/src/openstudio_lib/SchedulesTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULESTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/SchedulesTabView.cpp b/src/openstudio_lib/SchedulesTabView.cpp
index 7dc2e7c4c..e8e7c1ff8 100644
--- a/src/openstudio_lib/SchedulesTabView.cpp
+++ b/src/openstudio_lib/SchedulesTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SchedulesTabView.hpp"
diff --git a/src/openstudio_lib/SchedulesTabView.hpp b/src/openstudio_lib/SchedulesTabView.hpp
index 1a6b84c85..8efaee7ec 100644
--- a/src/openstudio_lib/SchedulesTabView.hpp
+++ b/src/openstudio_lib/SchedulesTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULESTABVIEW_HPP
diff --git a/src/openstudio_lib/SchedulesView.cpp b/src/openstudio_lib/SchedulesView.cpp
index 9ab460f2b..13c4ff4b2 100644
--- a/src/openstudio_lib/SchedulesView.cpp
+++ b/src/openstudio_lib/SchedulesView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SchedulesView.hpp"
diff --git a/src/openstudio_lib/SchedulesView.hpp b/src/openstudio_lib/SchedulesView.hpp
index 0faced0b1..91d0e511f 100644
--- a/src/openstudio_lib/SchedulesView.hpp
+++ b/src/openstudio_lib/SchedulesView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCHEDULESVIEW_HPP
diff --git a/src/openstudio_lib/ScriptItem.cpp b/src/openstudio_lib/ScriptItem.cpp
index 3c9e4c312..845dc5d28 100644
--- a/src/openstudio_lib/ScriptItem.cpp
+++ b/src/openstudio_lib/ScriptItem.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScriptItem.hpp"
diff --git a/src/openstudio_lib/ScriptItem.hpp b/src/openstudio_lib/ScriptItem.hpp
index 7cb4b572f..317282246 100644
--- a/src/openstudio_lib/ScriptItem.hpp
+++ b/src/openstudio_lib/ScriptItem.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCRIPTITEM_HPP
diff --git a/src/openstudio_lib/ScriptsTabController.cpp b/src/openstudio_lib/ScriptsTabController.cpp
index 618a66161..17a71fcbf 100644
--- a/src/openstudio_lib/ScriptsTabController.cpp
+++ b/src/openstudio_lib/ScriptsTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScriptsTabController.hpp"
diff --git a/src/openstudio_lib/ScriptsTabController.hpp b/src/openstudio_lib/ScriptsTabController.hpp
index 5a370462e..e2f44f4d1 100644
--- a/src/openstudio_lib/ScriptsTabController.hpp
+++ b/src/openstudio_lib/ScriptsTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCRIPTSTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/ScriptsTabView.cpp b/src/openstudio_lib/ScriptsTabView.cpp
index 07f5ef1cf..dcd4e42ab 100644
--- a/src/openstudio_lib/ScriptsTabView.cpp
+++ b/src/openstudio_lib/ScriptsTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ScriptsTabView.hpp"
diff --git a/src/openstudio_lib/ScriptsTabView.hpp b/src/openstudio_lib/ScriptsTabView.hpp
index ed6a31b7b..9ed550756 100644
--- a/src/openstudio_lib/ScriptsTabView.hpp
+++ b/src/openstudio_lib/ScriptsTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SCRIPTSTABVIEW_HPP
diff --git a/src/openstudio_lib/ServiceWaterGridItems.cpp b/src/openstudio_lib/ServiceWaterGridItems.cpp
index e0c4d8347..9c3dd3c70 100644
--- a/src/openstudio_lib/ServiceWaterGridItems.cpp
+++ b/src/openstudio_lib/ServiceWaterGridItems.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ServiceWaterGridItems.hpp"
diff --git a/src/openstudio_lib/ServiceWaterGridItems.hpp b/src/openstudio_lib/ServiceWaterGridItems.hpp
index f356080f9..143411673 100644
--- a/src/openstudio_lib/ServiceWaterGridItems.hpp
+++ b/src/openstudio_lib/ServiceWaterGridItems.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SERVICEWATERGRIDITEMS_HPP
diff --git a/src/openstudio_lib/ServiceWaterScene.cpp b/src/openstudio_lib/ServiceWaterScene.cpp
index 5b8eae3dd..6ef9b1d46 100644
--- a/src/openstudio_lib/ServiceWaterScene.cpp
+++ b/src/openstudio_lib/ServiceWaterScene.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ServiceWaterScene.hpp"
diff --git a/src/openstudio_lib/ServiceWaterScene.hpp b/src/openstudio_lib/ServiceWaterScene.hpp
index 0522651a1..b4e6c218e 100644
--- a/src/openstudio_lib/ServiceWaterScene.hpp
+++ b/src/openstudio_lib/ServiceWaterScene.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SERVICEWATERSCENE_HPP
diff --git a/src/openstudio_lib/SimSettingsTabController.cpp b/src/openstudio_lib/SimSettingsTabController.cpp
index 70e286db6..5b844f9da 100644
--- a/src/openstudio_lib/SimSettingsTabController.cpp
+++ b/src/openstudio_lib/SimSettingsTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SimSettingsTabController.hpp"
diff --git a/src/openstudio_lib/SimSettingsTabController.hpp b/src/openstudio_lib/SimSettingsTabController.hpp
index 1a9e210cc..6c0a07d0d 100644
--- a/src/openstudio_lib/SimSettingsTabController.hpp
+++ b/src/openstudio_lib/SimSettingsTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SIMSETTINGSTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/SimSettingsTabView.cpp b/src/openstudio_lib/SimSettingsTabView.cpp
index 015ceacfb..e809960e6 100644
--- a/src/openstudio_lib/SimSettingsTabView.cpp
+++ b/src/openstudio_lib/SimSettingsTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SimSettingsTabView.hpp"
diff --git a/src/openstudio_lib/SimSettingsTabView.hpp b/src/openstudio_lib/SimSettingsTabView.hpp
index aa0e9fff7..235db3e25 100644
--- a/src/openstudio_lib/SimSettingsTabView.hpp
+++ b/src/openstudio_lib/SimSettingsTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SIMSETTINGSTABVIEW_HPP
diff --git a/src/openstudio_lib/SimSettingsView.cpp b/src/openstudio_lib/SimSettingsView.cpp
index 4d9152304..cca519b31 100644
--- a/src/openstudio_lib/SimSettingsView.cpp
+++ b/src/openstudio_lib/SimSettingsView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SimSettingsView.hpp"
diff --git a/src/openstudio_lib/SimSettingsView.hpp b/src/openstudio_lib/SimSettingsView.hpp
index d8089cc57..21abcffd0 100644
--- a/src/openstudio_lib/SimSettingsView.hpp
+++ b/src/openstudio_lib/SimSettingsView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SIMSETTINGSVIEW_HPP
diff --git a/src/openstudio_lib/SpaceLoadInstancesWidget.cpp b/src/openstudio_lib/SpaceLoadInstancesWidget.cpp
index 11e884184..a0cf1fcc8 100644
--- a/src/openstudio_lib/SpaceLoadInstancesWidget.cpp
+++ b/src/openstudio_lib/SpaceLoadInstancesWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpaceLoadInstancesWidget.hpp"
diff --git a/src/openstudio_lib/SpaceLoadInstancesWidget.hpp b/src/openstudio_lib/SpaceLoadInstancesWidget.hpp
index 82db0d593..41e66413c 100644
--- a/src/openstudio_lib/SpaceLoadInstancesWidget.hpp
+++ b/src/openstudio_lib/SpaceLoadInstancesWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACELOADINSTANCESWIDGET_HPP
diff --git a/src/openstudio_lib/SpaceTypeInspectorView.cpp b/src/openstudio_lib/SpaceTypeInspectorView.cpp
index 12a271085..081c316e5 100644
--- a/src/openstudio_lib/SpaceTypeInspectorView.cpp
+++ b/src/openstudio_lib/SpaceTypeInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpaceTypeInspectorView.hpp"
diff --git a/src/openstudio_lib/SpaceTypeInspectorView.hpp b/src/openstudio_lib/SpaceTypeInspectorView.hpp
index ce230d521..29ffc9d57 100644
--- a/src/openstudio_lib/SpaceTypeInspectorView.hpp
+++ b/src/openstudio_lib/SpaceTypeInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACETYPEINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/SpaceTypesController.cpp b/src/openstudio_lib/SpaceTypesController.cpp
index eb8949f5c..f7c292c2b 100644
--- a/src/openstudio_lib/SpaceTypesController.cpp
+++ b/src/openstudio_lib/SpaceTypesController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpaceTypesController.hpp"
diff --git a/src/openstudio_lib/SpaceTypesController.hpp b/src/openstudio_lib/SpaceTypesController.hpp
index 02354e5b1..de2ef4890 100644
--- a/src/openstudio_lib/SpaceTypesController.hpp
+++ b/src/openstudio_lib/SpaceTypesController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACETYPESCONTROLLER_HPP
diff --git a/src/openstudio_lib/SpaceTypesGridView.cpp b/src/openstudio_lib/SpaceTypesGridView.cpp
index 19f844886..4d7ce8a6f 100644
--- a/src/openstudio_lib/SpaceTypesGridView.cpp
+++ b/src/openstudio_lib/SpaceTypesGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpaceTypesGridView.hpp"
diff --git a/src/openstudio_lib/SpaceTypesGridView.hpp b/src/openstudio_lib/SpaceTypesGridView.hpp
index 0400330b4..4142b8e15 100644
--- a/src/openstudio_lib/SpaceTypesGridView.hpp
+++ b/src/openstudio_lib/SpaceTypesGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACETYPESGRIDVIEW_HPP
diff --git a/src/openstudio_lib/SpaceTypesTabController.cpp b/src/openstudio_lib/SpaceTypesTabController.cpp
index bb07f94bf..c4c8702ff 100644
--- a/src/openstudio_lib/SpaceTypesTabController.cpp
+++ b/src/openstudio_lib/SpaceTypesTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpaceTypesTabController.hpp"
diff --git a/src/openstudio_lib/SpaceTypesTabController.hpp b/src/openstudio_lib/SpaceTypesTabController.hpp
index ff36d89bc..81ab13a82 100644
--- a/src/openstudio_lib/SpaceTypesTabController.hpp
+++ b/src/openstudio_lib/SpaceTypesTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACETYPESTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/SpaceTypesTabView.cpp b/src/openstudio_lib/SpaceTypesTabView.cpp
index b2a415734..03f2942d3 100644
--- a/src/openstudio_lib/SpaceTypesTabView.cpp
+++ b/src/openstudio_lib/SpaceTypesTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpaceTypesTabView.hpp"
diff --git a/src/openstudio_lib/SpaceTypesTabView.hpp b/src/openstudio_lib/SpaceTypesTabView.hpp
index 44383538b..459b996a4 100644
--- a/src/openstudio_lib/SpaceTypesTabView.hpp
+++ b/src/openstudio_lib/SpaceTypesTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACETYPESTABVIEW_HPP
diff --git a/src/openstudio_lib/SpaceTypesView.cpp b/src/openstudio_lib/SpaceTypesView.cpp
index 71bbd1547..1bac2cd7d 100644
--- a/src/openstudio_lib/SpaceTypesView.cpp
+++ b/src/openstudio_lib/SpaceTypesView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpaceTypesView.hpp"
diff --git a/src/openstudio_lib/SpaceTypesView.hpp b/src/openstudio_lib/SpaceTypesView.hpp
index f0b185ef4..0be53e33c 100644
--- a/src/openstudio_lib/SpaceTypesView.hpp
+++ b/src/openstudio_lib/SpaceTypesView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACETYPESVIEW_HPP
diff --git a/src/openstudio_lib/SpacesDaylightingGridView.cpp b/src/openstudio_lib/SpacesDaylightingGridView.cpp
index bc130b3d3..1f5e13e71 100644
--- a/src/openstudio_lib/SpacesDaylightingGridView.cpp
+++ b/src/openstudio_lib/SpacesDaylightingGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesDaylightingGridView.hpp"
diff --git a/src/openstudio_lib/SpacesDaylightingGridView.hpp b/src/openstudio_lib/SpacesDaylightingGridView.hpp
index bfd1d5b84..6af30ba2d 100644
--- a/src/openstudio_lib/SpacesDaylightingGridView.hpp
+++ b/src/openstudio_lib/SpacesDaylightingGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESDAYLIGHTINGGRIDVIEW_HPP
diff --git a/src/openstudio_lib/SpacesInteriorPartitionsGridView.cpp b/src/openstudio_lib/SpacesInteriorPartitionsGridView.cpp
index 168e36c31..31c8e0a52 100644
--- a/src/openstudio_lib/SpacesInteriorPartitionsGridView.cpp
+++ b/src/openstudio_lib/SpacesInteriorPartitionsGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesInteriorPartitionsGridView.hpp"
diff --git a/src/openstudio_lib/SpacesInteriorPartitionsGridView.hpp b/src/openstudio_lib/SpacesInteriorPartitionsGridView.hpp
index ee8017670..351b99615 100644
--- a/src/openstudio_lib/SpacesInteriorPartitionsGridView.hpp
+++ b/src/openstudio_lib/SpacesInteriorPartitionsGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESINTERIORPARTITIONSGRIDVIEW_HPP
diff --git a/src/openstudio_lib/SpacesLoadsGridView.cpp b/src/openstudio_lib/SpacesLoadsGridView.cpp
index d7d157438..6c44162eb 100644
--- a/src/openstudio_lib/SpacesLoadsGridView.cpp
+++ b/src/openstudio_lib/SpacesLoadsGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesLoadsGridView.hpp"
diff --git a/src/openstudio_lib/SpacesLoadsGridView.hpp b/src/openstudio_lib/SpacesLoadsGridView.hpp
index 64d35679a..9b537746b 100644
--- a/src/openstudio_lib/SpacesLoadsGridView.hpp
+++ b/src/openstudio_lib/SpacesLoadsGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESLOADSGRIDVIEW_HPP
diff --git a/src/openstudio_lib/SpacesShadingGridView.cpp b/src/openstudio_lib/SpacesShadingGridView.cpp
index 0ed8e4ace..d2939cef0 100644
--- a/src/openstudio_lib/SpacesShadingGridView.cpp
+++ b/src/openstudio_lib/SpacesShadingGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesShadingGridView.hpp"
diff --git a/src/openstudio_lib/SpacesShadingGridView.hpp b/src/openstudio_lib/SpacesShadingGridView.hpp
index eb7cd62ce..b776aadea 100644
--- a/src/openstudio_lib/SpacesShadingGridView.hpp
+++ b/src/openstudio_lib/SpacesShadingGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESSHADINGGRIDVIEW_HPP
diff --git a/src/openstudio_lib/SpacesSpacesGridView.cpp b/src/openstudio_lib/SpacesSpacesGridView.cpp
index 39faf5a33..9102f8f6c 100644
--- a/src/openstudio_lib/SpacesSpacesGridView.cpp
+++ b/src/openstudio_lib/SpacesSpacesGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesSpacesGridView.hpp"
diff --git a/src/openstudio_lib/SpacesSpacesGridView.hpp b/src/openstudio_lib/SpacesSpacesGridView.hpp
index e4bc22a3c..79d6e2a47 100644
--- a/src/openstudio_lib/SpacesSpacesGridView.hpp
+++ b/src/openstudio_lib/SpacesSpacesGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESSPACESGRIDVIEW_HPP
diff --git a/src/openstudio_lib/SpacesSubsurfacesGridView.cpp b/src/openstudio_lib/SpacesSubsurfacesGridView.cpp
index bfa041e45..fd9eb1d10 100644
--- a/src/openstudio_lib/SpacesSubsurfacesGridView.cpp
+++ b/src/openstudio_lib/SpacesSubsurfacesGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesSubsurfacesGridView.hpp"
diff --git a/src/openstudio_lib/SpacesSubsurfacesGridView.hpp b/src/openstudio_lib/SpacesSubsurfacesGridView.hpp
index 144ec40eb..2a2aab5ff 100644
--- a/src/openstudio_lib/SpacesSubsurfacesGridView.hpp
+++ b/src/openstudio_lib/SpacesSubsurfacesGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESSUBSURFACESGRIDVIEW_HPP
diff --git a/src/openstudio_lib/SpacesSubtabGridView.cpp b/src/openstudio_lib/SpacesSubtabGridView.cpp
index ba901ae07..3b9119436 100644
--- a/src/openstudio_lib/SpacesSubtabGridView.cpp
+++ b/src/openstudio_lib/SpacesSubtabGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesSubtabGridView.hpp"
diff --git a/src/openstudio_lib/SpacesSubtabGridView.hpp b/src/openstudio_lib/SpacesSubtabGridView.hpp
index 5e15a3931..9540ba030 100644
--- a/src/openstudio_lib/SpacesSubtabGridView.hpp
+++ b/src/openstudio_lib/SpacesSubtabGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESSUBTABGRIDVIEW_HPP
diff --git a/src/openstudio_lib/SpacesSurfacesGridView.cpp b/src/openstudio_lib/SpacesSurfacesGridView.cpp
index 6ccbf7979..97b9e31eb 100644
--- a/src/openstudio_lib/SpacesSurfacesGridView.cpp
+++ b/src/openstudio_lib/SpacesSurfacesGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesSurfacesGridView.hpp"
diff --git a/src/openstudio_lib/SpacesSurfacesGridView.hpp b/src/openstudio_lib/SpacesSurfacesGridView.hpp
index 2a0c9aa6a..08bec340d 100644
--- a/src/openstudio_lib/SpacesSurfacesGridView.hpp
+++ b/src/openstudio_lib/SpacesSurfacesGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESSURFACESGRIDVIEW_HPP
diff --git a/src/openstudio_lib/SpacesTabController.cpp b/src/openstudio_lib/SpacesTabController.cpp
index 68fb3d3c3..2bea0514a 100644
--- a/src/openstudio_lib/SpacesTabController.cpp
+++ b/src/openstudio_lib/SpacesTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesTabController.hpp"
diff --git a/src/openstudio_lib/SpacesTabController.hpp b/src/openstudio_lib/SpacesTabController.hpp
index cc0473f7f..3e7caef5f 100644
--- a/src/openstudio_lib/SpacesTabController.hpp
+++ b/src/openstudio_lib/SpacesTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/SpacesTabView.cpp b/src/openstudio_lib/SpacesTabView.cpp
index 7e04599bc..979c41ac1 100644
--- a/src/openstudio_lib/SpacesTabView.cpp
+++ b/src/openstudio_lib/SpacesTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SpacesTabView.hpp"
diff --git a/src/openstudio_lib/SpacesTabView.hpp b/src/openstudio_lib/SpacesTabView.hpp
index c79f54475..4bcc1e630 100644
--- a/src/openstudio_lib/SpacesTabView.hpp
+++ b/src/openstudio_lib/SpacesTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SPACESTABVIEW_HPP
diff --git a/src/openstudio_lib/StandardOpaqueMaterialInspectorView.cpp b/src/openstudio_lib/StandardOpaqueMaterialInspectorView.cpp
index 9f646e7d6..d8a2674a7 100644
--- a/src/openstudio_lib/StandardOpaqueMaterialInspectorView.cpp
+++ b/src/openstudio_lib/StandardOpaqueMaterialInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "StandardOpaqueMaterialInspectorView.hpp"
diff --git a/src/openstudio_lib/StandardOpaqueMaterialInspectorView.hpp b/src/openstudio_lib/StandardOpaqueMaterialInspectorView.hpp
index 16d07cb9b..782e21eaa 100644
--- a/src/openstudio_lib/StandardOpaqueMaterialInspectorView.hpp
+++ b/src/openstudio_lib/StandardOpaqueMaterialInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_STANDARDOPAQUEMATERIALINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/StandardsInformationConstructionWidget.cpp b/src/openstudio_lib/StandardsInformationConstructionWidget.cpp
index a43877157..cb9ee4448 100644
--- a/src/openstudio_lib/StandardsInformationConstructionWidget.cpp
+++ b/src/openstudio_lib/StandardsInformationConstructionWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "StandardsInformationConstructionWidget.hpp"
diff --git a/src/openstudio_lib/StandardsInformationConstructionWidget.hpp b/src/openstudio_lib/StandardsInformationConstructionWidget.hpp
index 4ebb32657..c43b116a7 100644
--- a/src/openstudio_lib/StandardsInformationConstructionWidget.hpp
+++ b/src/openstudio_lib/StandardsInformationConstructionWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_STANDARDSINFORMATIONCONSTRUCTIONWIDGET_HPP
diff --git a/src/openstudio_lib/StandardsInformationMaterialWidget.cpp b/src/openstudio_lib/StandardsInformationMaterialWidget.cpp
index 8921fa25c..32a42062d 100644
--- a/src/openstudio_lib/StandardsInformationMaterialWidget.cpp
+++ b/src/openstudio_lib/StandardsInformationMaterialWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "StandardsInformationMaterialWidget.hpp"
diff --git a/src/openstudio_lib/StandardsInformationMaterialWidget.hpp b/src/openstudio_lib/StandardsInformationMaterialWidget.hpp
index f26adb51e..d561bf1d8 100644
--- a/src/openstudio_lib/StandardsInformationMaterialWidget.hpp
+++ b/src/openstudio_lib/StandardsInformationMaterialWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_STANDARDSINFORMATIONMATERIALWIDGET_HPP
diff --git a/src/openstudio_lib/SteamEquipmentInspectorView.cpp b/src/openstudio_lib/SteamEquipmentInspectorView.cpp
index dc3449a3c..33df9a30e 100644
--- a/src/openstudio_lib/SteamEquipmentInspectorView.cpp
+++ b/src/openstudio_lib/SteamEquipmentInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SteamEquipmentInspectorView.hpp"
diff --git a/src/openstudio_lib/SteamEquipmentInspectorView.hpp b/src/openstudio_lib/SteamEquipmentInspectorView.hpp
index c5730b65b..096dba7fa 100644
--- a/src/openstudio_lib/SteamEquipmentInspectorView.hpp
+++ b/src/openstudio_lib/SteamEquipmentInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_STEAMEQUIPMENTINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/SubTabController.cpp b/src/openstudio_lib/SubTabController.cpp
index 887305501..6f3f73303 100644
--- a/src/openstudio_lib/SubTabController.cpp
+++ b/src/openstudio_lib/SubTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SubTabController.hpp"
diff --git a/src/openstudio_lib/SubTabController.hpp b/src/openstudio_lib/SubTabController.hpp
index 19a3cdc76..887dc16c7 100644
--- a/src/openstudio_lib/SubTabController.hpp
+++ b/src/openstudio_lib/SubTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SUBTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/SubTabView.cpp b/src/openstudio_lib/SubTabView.cpp
index 02b9860d7..2d8dd1f8f 100644
--- a/src/openstudio_lib/SubTabView.cpp
+++ b/src/openstudio_lib/SubTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SubTabView.hpp"
diff --git a/src/openstudio_lib/SubTabView.hpp b/src/openstudio_lib/SubTabView.hpp
index c4291c748..237d753f3 100644
--- a/src/openstudio_lib/SubTabView.hpp
+++ b/src/openstudio_lib/SubTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SUBTABVIEW_HPP
diff --git a/src/openstudio_lib/SummaryTabController.cpp b/src/openstudio_lib/SummaryTabController.cpp
index 65034ff29..92d2ab50c 100644
--- a/src/openstudio_lib/SummaryTabController.cpp
+++ b/src/openstudio_lib/SummaryTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SummaryTabController.hpp"
diff --git a/src/openstudio_lib/SummaryTabController.hpp b/src/openstudio_lib/SummaryTabController.hpp
index fc2b5c2f8..8509928b4 100644
--- a/src/openstudio_lib/SummaryTabController.hpp
+++ b/src/openstudio_lib/SummaryTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SUMMARYTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/SummaryTabView.cpp b/src/openstudio_lib/SummaryTabView.cpp
index 4f400fc67..8ad35645b 100644
--- a/src/openstudio_lib/SummaryTabView.cpp
+++ b/src/openstudio_lib/SummaryTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SummaryTabView.hpp"
diff --git a/src/openstudio_lib/SummaryTabView.hpp b/src/openstudio_lib/SummaryTabView.hpp
index 79889071d..31bf57673 100644
--- a/src/openstudio_lib/SummaryTabView.hpp
+++ b/src/openstudio_lib/SummaryTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SUMMARYTABVIEW_HPP
diff --git a/src/openstudio_lib/SwimmingPoolIndoorFloorSurfaceDialog.cpp b/src/openstudio_lib/SwimmingPoolIndoorFloorSurfaceDialog.cpp
index f6b790500..0296323fc 100644
--- a/src/openstudio_lib/SwimmingPoolIndoorFloorSurfaceDialog.cpp
+++ b/src/openstudio_lib/SwimmingPoolIndoorFloorSurfaceDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SwimmingPoolIndoorFloorSurfaceDialog.hpp"
diff --git a/src/openstudio_lib/SwimmingPoolIndoorFloorSurfaceDialog.hpp b/src/openstudio_lib/SwimmingPoolIndoorFloorSurfaceDialog.hpp
index 7be88c113..9af864f1f 100644
--- a/src/openstudio_lib/SwimmingPoolIndoorFloorSurfaceDialog.hpp
+++ b/src/openstudio_lib/SwimmingPoolIndoorFloorSurfaceDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_SWIMMINGPOOLINDOORFLOORSURFACEDIALOG_HPP
diff --git a/src/openstudio_lib/ThermalZonesController.cpp b/src/openstudio_lib/ThermalZonesController.cpp
index 2651c451d..150ce6b3d 100644
--- a/src/openstudio_lib/ThermalZonesController.cpp
+++ b/src/openstudio_lib/ThermalZonesController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ThermalZonesController.hpp"
diff --git a/src/openstudio_lib/ThermalZonesController.hpp b/src/openstudio_lib/ThermalZonesController.hpp
index e2dc91647..520554357 100644
--- a/src/openstudio_lib/ThermalZonesController.hpp
+++ b/src/openstudio_lib/ThermalZonesController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_THERMALZONESCONTROLLER_HPP
diff --git a/src/openstudio_lib/ThermalZonesGridView.cpp b/src/openstudio_lib/ThermalZonesGridView.cpp
index f483abe85..762c9c6a4 100644
--- a/src/openstudio_lib/ThermalZonesGridView.cpp
+++ b/src/openstudio_lib/ThermalZonesGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ThermalZonesGridView.hpp"
diff --git a/src/openstudio_lib/ThermalZonesGridView.hpp b/src/openstudio_lib/ThermalZonesGridView.hpp
index 37f8fd3b7..fc7e9a7aa 100644
--- a/src/openstudio_lib/ThermalZonesGridView.hpp
+++ b/src/openstudio_lib/ThermalZonesGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_THERMALZONESGRIDVIEW_HPP
diff --git a/src/openstudio_lib/ThermalZonesTabController.cpp b/src/openstudio_lib/ThermalZonesTabController.cpp
index 47292bc14..6c0d2aa6e 100644
--- a/src/openstudio_lib/ThermalZonesTabController.cpp
+++ b/src/openstudio_lib/ThermalZonesTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ThermalZonesTabController.hpp"
diff --git a/src/openstudio_lib/ThermalZonesTabController.hpp b/src/openstudio_lib/ThermalZonesTabController.hpp
index 0b2d7a749..20091d190 100644
--- a/src/openstudio_lib/ThermalZonesTabController.hpp
+++ b/src/openstudio_lib/ThermalZonesTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_THERMALZONESTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/ThermalZonesTabView.cpp b/src/openstudio_lib/ThermalZonesTabView.cpp
index 8ae34f6e6..434e752be 100644
--- a/src/openstudio_lib/ThermalZonesTabView.cpp
+++ b/src/openstudio_lib/ThermalZonesTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ThermalZonesTabView.hpp"
diff --git a/src/openstudio_lib/ThermalZonesTabView.hpp b/src/openstudio_lib/ThermalZonesTabView.hpp
index eb6b354eb..0e9155510 100644
--- a/src/openstudio_lib/ThermalZonesTabView.hpp
+++ b/src/openstudio_lib/ThermalZonesTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_THERMALZONESTABVIEW_HPP
diff --git a/src/openstudio_lib/ThermalZonesView.cpp b/src/openstudio_lib/ThermalZonesView.cpp
index 29f3554ec..88f2bd1b9 100644
--- a/src/openstudio_lib/ThermalZonesView.cpp
+++ b/src/openstudio_lib/ThermalZonesView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ThermalZonesView.hpp"
diff --git a/src/openstudio_lib/ThermalZonesView.hpp b/src/openstudio_lib/ThermalZonesView.hpp
index 273d0871d..c1948cf6b 100644
--- a/src/openstudio_lib/ThermalZonesView.hpp
+++ b/src/openstudio_lib/ThermalZonesView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_THERMALZONESVIEW_HPP
diff --git a/src/openstudio_lib/UtilityBillAllFuelTypesListView.cpp b/src/openstudio_lib/UtilityBillAllFuelTypesListView.cpp
index c0e681740..c43cbc0a9 100644
--- a/src/openstudio_lib/UtilityBillAllFuelTypesListView.cpp
+++ b/src/openstudio_lib/UtilityBillAllFuelTypesListView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "UtilityBillAllFuelTypesListView.hpp"
diff --git a/src/openstudio_lib/UtilityBillAllFuelTypesListView.hpp b/src/openstudio_lib/UtilityBillAllFuelTypesListView.hpp
index 9f8dd4cad..5c5501604 100644
--- a/src/openstudio_lib/UtilityBillAllFuelTypesListView.hpp
+++ b/src/openstudio_lib/UtilityBillAllFuelTypesListView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_UTILITYBILLALLFUELTYPESLISTVIEW_HPP
diff --git a/src/openstudio_lib/UtilityBillFuelTypeItem.cpp b/src/openstudio_lib/UtilityBillFuelTypeItem.cpp
index 5ed101bf2..568071f3a 100644
--- a/src/openstudio_lib/UtilityBillFuelTypeItem.cpp
+++ b/src/openstudio_lib/UtilityBillFuelTypeItem.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "UtilityBillFuelTypeItem.hpp"
diff --git a/src/openstudio_lib/UtilityBillFuelTypeItem.hpp b/src/openstudio_lib/UtilityBillFuelTypeItem.hpp
index 44a52a25e..70fd2e5c0 100644
--- a/src/openstudio_lib/UtilityBillFuelTypeItem.hpp
+++ b/src/openstudio_lib/UtilityBillFuelTypeItem.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_UTILITYBILLFUELTYPEITEM_HPP
diff --git a/src/openstudio_lib/UtilityBillFuelTypeListView.cpp b/src/openstudio_lib/UtilityBillFuelTypeListView.cpp
index 80f362115..a861de532 100644
--- a/src/openstudio_lib/UtilityBillFuelTypeListView.cpp
+++ b/src/openstudio_lib/UtilityBillFuelTypeListView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "UtilityBillFuelTypeListView.hpp"
diff --git a/src/openstudio_lib/UtilityBillFuelTypeListView.hpp b/src/openstudio_lib/UtilityBillFuelTypeListView.hpp
index c0f54e13c..cd5e4396c 100644
--- a/src/openstudio_lib/UtilityBillFuelTypeListView.hpp
+++ b/src/openstudio_lib/UtilityBillFuelTypeListView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_UTILITYBILLFUELTYPELISTVIEW_HPP
diff --git a/src/openstudio_lib/UtilityBillsController.cpp b/src/openstudio_lib/UtilityBillsController.cpp
index dae53b3e7..23f023b84 100644
--- a/src/openstudio_lib/UtilityBillsController.cpp
+++ b/src/openstudio_lib/UtilityBillsController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "UtilityBillsController.hpp"
diff --git a/src/openstudio_lib/UtilityBillsController.hpp b/src/openstudio_lib/UtilityBillsController.hpp
index 4f502ef79..e0b46ebe2 100644
--- a/src/openstudio_lib/UtilityBillsController.hpp
+++ b/src/openstudio_lib/UtilityBillsController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_UTILITYBILLSCONTROLLER_HPP
diff --git a/src/openstudio_lib/UtilityBillsView.cpp b/src/openstudio_lib/UtilityBillsView.cpp
index 879a2b81c..c66db582c 100644
--- a/src/openstudio_lib/UtilityBillsView.cpp
+++ b/src/openstudio_lib/UtilityBillsView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "UtilityBillsView.hpp"
diff --git a/src/openstudio_lib/UtilityBillsView.hpp b/src/openstudio_lib/UtilityBillsView.hpp
index e802fc9c9..4d28d6f17 100644
--- a/src/openstudio_lib/UtilityBillsView.hpp
+++ b/src/openstudio_lib/UtilityBillsView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_UTILITYBILLSVIEW_HPP
diff --git a/src/openstudio_lib/VRFController.cpp b/src/openstudio_lib/VRFController.cpp
index 9e2056cee..8f3c95d2f 100644
--- a/src/openstudio_lib/VRFController.cpp
+++ b/src/openstudio_lib/VRFController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "VRFController.hpp"
diff --git a/src/openstudio_lib/VRFController.hpp b/src/openstudio_lib/VRFController.hpp
index 845d27100..586178323 100644
--- a/src/openstudio_lib/VRFController.hpp
+++ b/src/openstudio_lib/VRFController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_VRFCONTROLLER_HPP
diff --git a/src/openstudio_lib/VRFGraphicsItems.cpp b/src/openstudio_lib/VRFGraphicsItems.cpp
index 2fd4fa4ec..dcb59b3e8 100644
--- a/src/openstudio_lib/VRFGraphicsItems.cpp
+++ b/src/openstudio_lib/VRFGraphicsItems.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSItem.hpp"
diff --git a/src/openstudio_lib/VRFGraphicsItems.hpp b/src/openstudio_lib/VRFGraphicsItems.hpp
index f3e3e0bda..b94f7400a 100644
--- a/src/openstudio_lib/VRFGraphicsItems.hpp
+++ b/src/openstudio_lib/VRFGraphicsItems.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_VRFGRAPHICSITEMS_HPP
diff --git a/src/openstudio_lib/VariablesTabController.cpp b/src/openstudio_lib/VariablesTabController.cpp
index bdc21a452..8d1aea5a0 100644
--- a/src/openstudio_lib/VariablesTabController.cpp
+++ b/src/openstudio_lib/VariablesTabController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "VariablesTabController.hpp"
diff --git a/src/openstudio_lib/VariablesTabController.hpp b/src/openstudio_lib/VariablesTabController.hpp
index bf42e6341..bb341f0b8 100644
--- a/src/openstudio_lib/VariablesTabController.hpp
+++ b/src/openstudio_lib/VariablesTabController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_VARIABLESTABCONTROLLER_HPP
diff --git a/src/openstudio_lib/VariablesTabView.cpp b/src/openstudio_lib/VariablesTabView.cpp
index 4255af849..61555df56 100644
--- a/src/openstudio_lib/VariablesTabView.cpp
+++ b/src/openstudio_lib/VariablesTabView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "VariablesTabView.hpp"
diff --git a/src/openstudio_lib/VariablesTabView.hpp b/src/openstudio_lib/VariablesTabView.hpp
index 43d4555ae..7192eb111 100644
--- a/src/openstudio_lib/VariablesTabView.hpp
+++ b/src/openstudio_lib/VariablesTabView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_VARIABLESTABVIEW_HPP
diff --git a/src/openstudio_lib/VerticalTabWidget.cpp b/src/openstudio_lib/VerticalTabWidget.cpp
index 112182256..399074b9a 100644
--- a/src/openstudio_lib/VerticalTabWidget.cpp
+++ b/src/openstudio_lib/VerticalTabWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "VerticalTabWidget.hpp"
diff --git a/src/openstudio_lib/VerticalTabWidget.hpp b/src/openstudio_lib/VerticalTabWidget.hpp
index c92f52a52..3ad67082d 100644
--- a/src/openstudio_lib/VerticalTabWidget.hpp
+++ b/src/openstudio_lib/VerticalTabWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_VERTICALTABWIDGET_HPP
diff --git a/src/openstudio_lib/WaterUseEquipmentInspectorView.cpp b/src/openstudio_lib/WaterUseEquipmentInspectorView.cpp
index 9cfa8f311..0ab53ac02 100644
--- a/src/openstudio_lib/WaterUseEquipmentInspectorView.cpp
+++ b/src/openstudio_lib/WaterUseEquipmentInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WaterUseEquipmentInspectorView.hpp"
diff --git a/src/openstudio_lib/WaterUseEquipmentInspectorView.hpp b/src/openstudio_lib/WaterUseEquipmentInspectorView.hpp
index 3bbea822d..1c383807d 100644
--- a/src/openstudio_lib/WaterUseEquipmentInspectorView.hpp
+++ b/src/openstudio_lib/WaterUseEquipmentInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WATERUSEEQUIPMENTINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialBlindInspectorView.cpp b/src/openstudio_lib/WindowMaterialBlindInspectorView.cpp
index f84633de1..f333fb3b7 100644
--- a/src/openstudio_lib/WindowMaterialBlindInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialBlindInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialBlindInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialBlindInspectorView.hpp b/src/openstudio_lib/WindowMaterialBlindInspectorView.hpp
index cf3866f7d..e640346b1 100644
--- a/src/openstudio_lib/WindowMaterialBlindInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialBlindInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALBLINDINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.cpp b/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.cpp
index 8b2435d2f..92a6b5887 100644
--- a/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialDaylightRedirectionDeviceInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.hpp b/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.hpp
index eae6201b3..93d138cf2 100644
--- a/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialDaylightRedirectionDeviceInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALDAYLIGHTREDIRECTIONDEVICEINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialGasInspectorView.cpp b/src/openstudio_lib/WindowMaterialGasInspectorView.cpp
index 4d0575526..1ee673d88 100644
--- a/src/openstudio_lib/WindowMaterialGasInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialGasInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialGasInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialGasInspectorView.hpp b/src/openstudio_lib/WindowMaterialGasInspectorView.hpp
index dce7df1cd..96db5c43b 100644
--- a/src/openstudio_lib/WindowMaterialGasInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialGasInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALGASINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.cpp b/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.cpp
index 12b48be28..3667305c3 100644
--- a/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialGasMixtureInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.hpp b/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.hpp
index 5e5f49c55..ee7bc10bc 100644
--- a/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialGasMixtureInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALGASMIXTUREINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.cpp b/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.cpp
index e8dcdfe4e..9e0bac8e6 100644
--- a/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialGlazingGroupThermochromicInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.hpp b/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.hpp
index 4d1ae58aa..3223516cd 100644
--- a/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialGlazingGroupThermochromicInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALGLAZINGGROUPTHERMOCHROMICINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialGlazingInspectorView.cpp b/src/openstudio_lib/WindowMaterialGlazingInspectorView.cpp
index 8c9f6f534..75407f1ca 100644
--- a/src/openstudio_lib/WindowMaterialGlazingInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialGlazingInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialGlazingInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialGlazingInspectorView.hpp b/src/openstudio_lib/WindowMaterialGlazingInspectorView.hpp
index 671ae4fae..864aede76 100644
--- a/src/openstudio_lib/WindowMaterialGlazingInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialGlazingInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALGLAZINGINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.cpp b/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.cpp
index af1a34d6b..a18598044 100644
--- a/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp b/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp
index 3133df2a4..c75395724 100644
--- a/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALGLAZINGREFRACTIONEXTINCTIONMETHODINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp b/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp
index 21119841b..ce61ad6d2 100644
--- a/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialScreenInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialScreenInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialScreenInspectorView.hpp b/src/openstudio_lib/WindowMaterialScreenInspectorView.hpp
index e4f8bf21f..a38ae534e 100644
--- a/src/openstudio_lib/WindowMaterialScreenInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialScreenInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALSCREENINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialShadeInspectorView.cpp b/src/openstudio_lib/WindowMaterialShadeInspectorView.cpp
index 22c14eb40..4c10f209b 100644
--- a/src/openstudio_lib/WindowMaterialShadeInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialShadeInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialShadeInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialShadeInspectorView.hpp b/src/openstudio_lib/WindowMaterialShadeInspectorView.hpp
index 50df80fff..fefec2ea7 100644
--- a/src/openstudio_lib/WindowMaterialShadeInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialShadeInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALSHADEINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.cpp b/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.cpp
index b38d628dc..7f8c841d2 100644
--- a/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.cpp
+++ b/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WindowMaterialSimpleGlazingSystemInspectorView.hpp"
diff --git a/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.hpp b/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.hpp
index 1bcc98824..e77c248d8 100644
--- a/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.hpp
+++ b/src/openstudio_lib/WindowMaterialSimpleGlazingSystemInspectorView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_WINDOWMATERIALSIMPLEGLAZINGSYSTEMINSPECTORVIEW_HPP
diff --git a/src/openstudio_lib/YearSettingsWidget.cpp b/src/openstudio_lib/YearSettingsWidget.cpp
index 23473173e..fe838aa47 100644
--- a/src/openstudio_lib/YearSettingsWidget.cpp
+++ b/src/openstudio_lib/YearSettingsWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "YearSettingsWidget.hpp"
diff --git a/src/openstudio_lib/YearSettingsWidget.hpp b/src/openstudio_lib/YearSettingsWidget.hpp
index fe3d4864b..bd86d0ab9 100644
--- a/src/openstudio_lib/YearSettingsWidget.hpp
+++ b/src/openstudio_lib/YearSettingsWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_YEARSETTINGSWIDGET_HPP
diff --git a/src/openstudio_lib/ZoneChooserView.cpp b/src/openstudio_lib/ZoneChooserView.cpp
index 04ddef15a..9d1935d93 100644
--- a/src/openstudio_lib/ZoneChooserView.cpp
+++ b/src/openstudio_lib/ZoneChooserView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ZoneChooserView.hpp"
diff --git a/src/openstudio_lib/ZoneChooserView.hpp b/src/openstudio_lib/ZoneChooserView.hpp
index 225960fe1..794a64298 100644
--- a/src/openstudio_lib/ZoneChooserView.hpp
+++ b/src/openstudio_lib/ZoneChooserView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_ZONECHOOSERVIEW_HPP
diff --git a/src/openstudio_lib/test/AnalyticsHelper_GTest.cpp b/src/openstudio_lib/test/AnalyticsHelper_GTest.cpp
index 77a3e971f..01cf0d232 100644
--- a/src/openstudio_lib/test/AnalyticsHelper_GTest.cpp
+++ b/src/openstudio_lib/test/AnalyticsHelper_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/DesignDays_GTest.cpp b/src/openstudio_lib/test/DesignDays_GTest.cpp
index da5ca0cd0..f9e8b78b6 100644
--- a/src/openstudio_lib/test/DesignDays_GTest.cpp
+++ b/src/openstudio_lib/test/DesignDays_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/FacilityShading_GTest.cpp b/src/openstudio_lib/test/FacilityShading_GTest.cpp
index 966385d87..1407f2f85 100644
--- a/src/openstudio_lib/test/FacilityShading_GTest.cpp
+++ b/src/openstudio_lib/test/FacilityShading_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/FacilityStories_GTest.cpp b/src/openstudio_lib/test/FacilityStories_GTest.cpp
index 7e9f6e138..216c690f7 100644
--- a/src/openstudio_lib/test/FacilityStories_GTest.cpp
+++ b/src/openstudio_lib/test/FacilityStories_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/Geometry_GTest.cpp b/src/openstudio_lib/test/Geometry_GTest.cpp
index 3dd1f2115..54cd6ea91 100644
--- a/src/openstudio_lib/test/Geometry_GTest.cpp
+++ b/src/openstudio_lib/test/Geometry_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/IconLibrary_GTest.cpp b/src/openstudio_lib/test/IconLibrary_GTest.cpp
index 8ae3b6372..dc575b9d2 100644
--- a/src/openstudio_lib/test/IconLibrary_GTest.cpp
+++ b/src/openstudio_lib/test/IconLibrary_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/OSDropZone_GTest.cpp b/src/openstudio_lib/test/OSDropZone_GTest.cpp
index f17d77a99..c2be7412e 100644
--- a/src/openstudio_lib/test/OSDropZone_GTest.cpp
+++ b/src/openstudio_lib/test/OSDropZone_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/OSLineEdit_GTest.cpp b/src/openstudio_lib/test/OSLineEdit_GTest.cpp
index d7a35505d..76badd68a 100644
--- a/src/openstudio_lib/test/OSLineEdit_GTest.cpp
+++ b/src/openstudio_lib/test/OSLineEdit_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/ObjectSelector_GTest.cpp b/src/openstudio_lib/test/ObjectSelector_GTest.cpp
index 3b150ca34..a123f855f 100644
--- a/src/openstudio_lib/test/ObjectSelector_GTest.cpp
+++ b/src/openstudio_lib/test/ObjectSelector_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/OpenStudioLibFixture.cpp b/src/openstudio_lib/test/OpenStudioLibFixture.cpp
index 57a526a6d..62687ea40 100644
--- a/src/openstudio_lib/test/OpenStudioLibFixture.cpp
+++ b/src/openstudio_lib/test/OpenStudioLibFixture.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OpenStudioLibFixture.hpp"
diff --git a/src/openstudio_lib/test/OpenStudioLibFixture.hpp b/src/openstudio_lib/test/OpenStudioLibFixture.hpp
index 308d18a6a..e3fb6d1fa 100644
--- a/src/openstudio_lib/test/OpenStudioLibFixture.hpp
+++ b/src/openstudio_lib/test/OpenStudioLibFixture.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OPENSTUDIO_TEST_OPENSTUDIOLIBFIXTURE_HPP
diff --git a/src/openstudio_lib/test/SpacesLoads_GTest.cpp b/src/openstudio_lib/test/SpacesLoads_GTest.cpp
index c46b91d9d..22b081b8a 100644
--- a/src/openstudio_lib/test/SpacesLoads_GTest.cpp
+++ b/src/openstudio_lib/test/SpacesLoads_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/SpacesSpaces_GTest.cpp b/src/openstudio_lib/test/SpacesSpaces_GTest.cpp
index 381134f8d..5207063c5 100644
--- a/src/openstudio_lib/test/SpacesSpaces_GTest.cpp
+++ b/src/openstudio_lib/test/SpacesSpaces_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/SpacesSurfaces_Benchmark.cpp b/src/openstudio_lib/test/SpacesSurfaces_Benchmark.cpp
index 09ba242bf..7471e5a13 100644
--- a/src/openstudio_lib/test/SpacesSurfaces_Benchmark.cpp
+++ b/src/openstudio_lib/test/SpacesSurfaces_Benchmark.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/openstudio_lib/test/SpacesSurfaces_GTest.cpp b/src/openstudio_lib/test/SpacesSurfaces_GTest.cpp
index 8c0298320..24bb1d45b 100644
--- a/src/openstudio_lib/test/SpacesSurfaces_GTest.cpp
+++ b/src/openstudio_lib/test/SpacesSurfaces_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/shared_gui_components/BCLMeasureDialog.cpp b/src/shared_gui_components/BCLMeasureDialog.cpp
index d05703232..c13544bb5 100644
--- a/src/shared_gui_components/BCLMeasureDialog.cpp
+++ b/src/shared_gui_components/BCLMeasureDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "BCLMeasureDialog.hpp"
diff --git a/src/shared_gui_components/BCLMeasureDialog.hpp b/src/shared_gui_components/BCLMeasureDialog.hpp
index 0ba5cd173..380e2d733 100644
--- a/src/shared_gui_components/BCLMeasureDialog.hpp
+++ b/src/shared_gui_components/BCLMeasureDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_BCLMEASUREDIALOG_HPP
diff --git a/src/shared_gui_components/BaseApp.hpp b/src/shared_gui_components/BaseApp.hpp
index e0b9c2f83..dfcadf26a 100644
--- a/src/shared_gui_components/BaseApp.hpp
+++ b/src/shared_gui_components/BaseApp.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_BASEAPP_HPP
diff --git a/src/shared_gui_components/BuildingComponentDialog.cpp b/src/shared_gui_components/BuildingComponentDialog.cpp
index 1bb6d22c3..d56d531aa 100644
--- a/src/shared_gui_components/BuildingComponentDialog.cpp
+++ b/src/shared_gui_components/BuildingComponentDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "BuildingComponentDialog.hpp"
diff --git a/src/shared_gui_components/BuildingComponentDialog.hpp b/src/shared_gui_components/BuildingComponentDialog.hpp
index 8e63a745e..9c4fe5f6e 100644
--- a/src/shared_gui_components/BuildingComponentDialog.hpp
+++ b/src/shared_gui_components/BuildingComponentDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_BUILDINGCOMPONENTDIALOG_HPP
diff --git a/src/shared_gui_components/BuildingComponentDialogCentralWidget.cpp b/src/shared_gui_components/BuildingComponentDialogCentralWidget.cpp
index d7c904d76..ade6236e9 100644
--- a/src/shared_gui_components/BuildingComponentDialogCentralWidget.cpp
+++ b/src/shared_gui_components/BuildingComponentDialogCentralWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "BuildingComponentDialogCentralWidget.hpp"
diff --git a/src/shared_gui_components/BuildingComponentDialogCentralWidget.hpp b/src/shared_gui_components/BuildingComponentDialogCentralWidget.hpp
index 37a459e31..b1e1cc2d5 100644
--- a/src/shared_gui_components/BuildingComponentDialogCentralWidget.hpp
+++ b/src/shared_gui_components/BuildingComponentDialogCentralWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_BUILDINGCOMPONENTDIALOGCENTRALWIDGET_HPP
diff --git a/src/shared_gui_components/BusyWidget.cpp b/src/shared_gui_components/BusyWidget.cpp
index ffa010294..d8dcb0316 100644
--- a/src/shared_gui_components/BusyWidget.cpp
+++ b/src/shared_gui_components/BusyWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "BusyWidget.hpp"
diff --git a/src/shared_gui_components/BusyWidget.hpp b/src/shared_gui_components/BusyWidget.hpp
index 647315baf..c3bc5dbca 100644
--- a/src/shared_gui_components/BusyWidget.hpp
+++ b/src/shared_gui_components/BusyWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_BUSYWIDGET_HPP
diff --git a/src/shared_gui_components/Buttons.cpp b/src/shared_gui_components/Buttons.cpp
index 606b90ac7..08075b9b1 100644
--- a/src/shared_gui_components/Buttons.cpp
+++ b/src/shared_gui_components/Buttons.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "Buttons.hpp"
diff --git a/src/shared_gui_components/Buttons.hpp b/src/shared_gui_components/Buttons.hpp
index 0a7ddbfe3..a76487522 100644
--- a/src/shared_gui_components/Buttons.hpp
+++ b/src/shared_gui_components/Buttons.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_BUTTONS_HPP
diff --git a/src/shared_gui_components/CollapsibleComponent.cpp b/src/shared_gui_components/CollapsibleComponent.cpp
index 3a4a6a692..fc3d1841d 100644
--- a/src/shared_gui_components/CollapsibleComponent.cpp
+++ b/src/shared_gui_components/CollapsibleComponent.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "CollapsibleComponent.hpp"
diff --git a/src/shared_gui_components/CollapsibleComponent.hpp b/src/shared_gui_components/CollapsibleComponent.hpp
index e913f572e..baef60ac9 100644
--- a/src/shared_gui_components/CollapsibleComponent.hpp
+++ b/src/shared_gui_components/CollapsibleComponent.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_COLLAPSIBLECOMPONENT_HPP
diff --git a/src/shared_gui_components/CollapsibleComponentHeader.cpp b/src/shared_gui_components/CollapsibleComponentHeader.cpp
index 0abfc50e3..ad4874f5f 100644
--- a/src/shared_gui_components/CollapsibleComponentHeader.cpp
+++ b/src/shared_gui_components/CollapsibleComponentHeader.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "CollapsibleComponentHeader.hpp"
diff --git a/src/shared_gui_components/CollapsibleComponentHeader.hpp b/src/shared_gui_components/CollapsibleComponentHeader.hpp
index 32c25207f..f27bd75ab 100644
--- a/src/shared_gui_components/CollapsibleComponentHeader.hpp
+++ b/src/shared_gui_components/CollapsibleComponentHeader.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_COLLAPSIBLECOMPONENTHEADER_HPP
diff --git a/src/shared_gui_components/CollapsibleComponentList.cpp b/src/shared_gui_components/CollapsibleComponentList.cpp
index c6ac003eb..076dfc4bf 100644
--- a/src/shared_gui_components/CollapsibleComponentList.cpp
+++ b/src/shared_gui_components/CollapsibleComponentList.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "CollapsibleComponentList.hpp"
diff --git a/src/shared_gui_components/CollapsibleComponentList.hpp b/src/shared_gui_components/CollapsibleComponentList.hpp
index e42e20b41..4a504b623 100644
--- a/src/shared_gui_components/CollapsibleComponentList.hpp
+++ b/src/shared_gui_components/CollapsibleComponentList.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_COLLAPSIBLECOMPONENTLIST_HPP
diff --git a/src/shared_gui_components/ColorPalettes.hpp b/src/shared_gui_components/ColorPalettes.hpp
index a7e1dad10..eddf5528d 100644
--- a/src/shared_gui_components/ColorPalettes.hpp
+++ b/src/shared_gui_components/ColorPalettes.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_COLORPALETTES_HPP
diff --git a/src/shared_gui_components/Component.cpp b/src/shared_gui_components/Component.cpp
index bc24a94d5..40c2dc07f 100644
--- a/src/shared_gui_components/Component.cpp
+++ b/src/shared_gui_components/Component.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "Component.hpp"
diff --git a/src/shared_gui_components/Component.hpp b/src/shared_gui_components/Component.hpp
index c9af3e284..7f53d8dad 100644
--- a/src/shared_gui_components/Component.hpp
+++ b/src/shared_gui_components/Component.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_COMPONENT_HPP
diff --git a/src/shared_gui_components/ComponentList.cpp b/src/shared_gui_components/ComponentList.cpp
index cd08cf8e9..cf36b1c08 100644
--- a/src/shared_gui_components/ComponentList.cpp
+++ b/src/shared_gui_components/ComponentList.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ComponentList.hpp"
diff --git a/src/shared_gui_components/ComponentList.hpp b/src/shared_gui_components/ComponentList.hpp
index 8d84c52e3..1f63daadf 100644
--- a/src/shared_gui_components/ComponentList.hpp
+++ b/src/shared_gui_components/ComponentList.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_COMPONENTLIST_HPP
diff --git a/src/shared_gui_components/EditController.cpp b/src/shared_gui_components/EditController.cpp
index 6b6ce94ae..25a4e8009 100644
--- a/src/shared_gui_components/EditController.cpp
+++ b/src/shared_gui_components/EditController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "EditController.hpp"
diff --git a/src/shared_gui_components/EditController.hpp b/src/shared_gui_components/EditController.hpp
index 6786c264e..a68479903 100644
--- a/src/shared_gui_components/EditController.hpp
+++ b/src/shared_gui_components/EditController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_EDITCONTROLLER_HPP
diff --git a/src/shared_gui_components/EditView.cpp b/src/shared_gui_components/EditView.cpp
index 5034dc783..523b25913 100644
--- a/src/shared_gui_components/EditView.cpp
+++ b/src/shared_gui_components/EditView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "EditView.hpp"
diff --git a/src/shared_gui_components/EditView.hpp b/src/shared_gui_components/EditView.hpp
index aca016b0e..335fda29f 100644
--- a/src/shared_gui_components/EditView.hpp
+++ b/src/shared_gui_components/EditView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_EDITVIEW_HPP
diff --git a/src/shared_gui_components/FieldMethodTypedefs.hpp b/src/shared_gui_components/FieldMethodTypedefs.hpp
index 9de6e208f..9460b966d 100644
--- a/src/shared_gui_components/FieldMethodTypedefs.hpp
+++ b/src/shared_gui_components/FieldMethodTypedefs.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_FIELDMETHODTYPEDEFS_HPP
diff --git a/src/shared_gui_components/GraphicsItems.cpp b/src/shared_gui_components/GraphicsItems.cpp
index 8fe83bdcf..4b0d8983f 100644
--- a/src/shared_gui_components/GraphicsItems.cpp
+++ b/src/shared_gui_components/GraphicsItems.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "../shared_gui_components/GraphicsItems.hpp"
diff --git a/src/shared_gui_components/GraphicsItems.hpp b/src/shared_gui_components/GraphicsItems.hpp
index ded033f3b..40044c911 100644
--- a/src/shared_gui_components/GraphicsItems.hpp
+++ b/src/shared_gui_components/GraphicsItems.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_GRAPHICSITEMS_HPP
diff --git a/src/shared_gui_components/HeaderViews.cpp b/src/shared_gui_components/HeaderViews.cpp
index 2fe81d325..2dd4397dd 100644
--- a/src/shared_gui_components/HeaderViews.cpp
+++ b/src/shared_gui_components/HeaderViews.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "HeaderViews.hpp"
diff --git a/src/shared_gui_components/HeaderViews.hpp b/src/shared_gui_components/HeaderViews.hpp
index 748826044..6bf828940 100644
--- a/src/shared_gui_components/HeaderViews.hpp
+++ b/src/shared_gui_components/HeaderViews.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_HEADERVIEWS_HPP
diff --git a/src/shared_gui_components/LocalLibrary.hpp b/src/shared_gui_components/LocalLibrary.hpp
index 284be32f9..8657b2111 100644
--- a/src/shared_gui_components/LocalLibrary.hpp
+++ b/src/shared_gui_components/LocalLibrary.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_LOCALLIBRARY_HPP
diff --git a/src/shared_gui_components/LocalLibraryController.cpp b/src/shared_gui_components/LocalLibraryController.cpp
index 988a1747e..504cda2b1 100644
--- a/src/shared_gui_components/LocalLibraryController.cpp
+++ b/src/shared_gui_components/LocalLibraryController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LocalLibraryController.hpp"
diff --git a/src/shared_gui_components/LocalLibraryController.hpp b/src/shared_gui_components/LocalLibraryController.hpp
index 9d160fcdc..4fef7a260 100644
--- a/src/shared_gui_components/LocalLibraryController.hpp
+++ b/src/shared_gui_components/LocalLibraryController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_LOCALLIBRARYCONTROLLER_HPP
diff --git a/src/shared_gui_components/LocalLibraryView.cpp b/src/shared_gui_components/LocalLibraryView.cpp
index 68ab5e048..32933a851 100644
--- a/src/shared_gui_components/LocalLibraryView.cpp
+++ b/src/shared_gui_components/LocalLibraryView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "LocalLibraryView.hpp"
diff --git a/src/shared_gui_components/LocalLibraryView.hpp b/src/shared_gui_components/LocalLibraryView.hpp
index 40c23e284..7775fc027 100644
--- a/src/shared_gui_components/LocalLibraryView.hpp
+++ b/src/shared_gui_components/LocalLibraryView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_LOCALLIBRARYVIEW_HPP
diff --git a/src/shared_gui_components/MeasureBadge.cpp b/src/shared_gui_components/MeasureBadge.cpp
index 831e261fe..6db220497 100644
--- a/src/shared_gui_components/MeasureBadge.cpp
+++ b/src/shared_gui_components/MeasureBadge.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MeasureBadge.hpp"
diff --git a/src/shared_gui_components/MeasureBadge.hpp b/src/shared_gui_components/MeasureBadge.hpp
index 111097cef..cb86fb00d 100644
--- a/src/shared_gui_components/MeasureBadge.hpp
+++ b/src/shared_gui_components/MeasureBadge.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_MEASUREBADGE_HPP
diff --git a/src/shared_gui_components/MeasureDragData.cpp b/src/shared_gui_components/MeasureDragData.cpp
index 92b5e2796..5127ccd0b 100644
--- a/src/shared_gui_components/MeasureDragData.cpp
+++ b/src/shared_gui_components/MeasureDragData.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MeasureDragData.hpp"
diff --git a/src/shared_gui_components/MeasureDragData.hpp b/src/shared_gui_components/MeasureDragData.hpp
index 1af59b400..2d336717e 100644
--- a/src/shared_gui_components/MeasureDragData.hpp
+++ b/src/shared_gui_components/MeasureDragData.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_MEASUREDRAGDATA_HPP
diff --git a/src/shared_gui_components/MeasureManager.cpp b/src/shared_gui_components/MeasureManager.cpp
index 71dde42a6..259e32dff 100644
--- a/src/shared_gui_components/MeasureManager.cpp
+++ b/src/shared_gui_components/MeasureManager.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "MeasureManager.hpp"
diff --git a/src/shared_gui_components/MeasureManager.hpp b/src/shared_gui_components/MeasureManager.hpp
index 46ead9471..af019005d 100644
--- a/src/shared_gui_components/MeasureManager.hpp
+++ b/src/shared_gui_components/MeasureManager.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_MEASUREMANAGER_HPP
diff --git a/src/shared_gui_components/NetworkProxyDialog.cpp b/src/shared_gui_components/NetworkProxyDialog.cpp
index c7f6e04aa..716ab5f00 100644
--- a/src/shared_gui_components/NetworkProxyDialog.cpp
+++ b/src/shared_gui_components/NetworkProxyDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "NetworkProxyDialog.hpp"
diff --git a/src/shared_gui_components/NetworkProxyDialog.hpp b/src/shared_gui_components/NetworkProxyDialog.hpp
index 08f4aca3f..926a0fdfc 100644
--- a/src/shared_gui_components/NetworkProxyDialog.hpp
+++ b/src/shared_gui_components/NetworkProxyDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_NETWORKPROXYDIALOG_HPP
diff --git a/src/shared_gui_components/OSCellWrapper.cpp b/src/shared_gui_components/OSCellWrapper.cpp
index 0b87165ba..ebeb573c2 100644
--- a/src/shared_gui_components/OSCellWrapper.cpp
+++ b/src/shared_gui_components/OSCellWrapper.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSCellWrapper.hpp"
diff --git a/src/shared_gui_components/OSCellWrapper.hpp b/src/shared_gui_components/OSCellWrapper.hpp
index 60212aaea..a58ae6cce 100644
--- a/src/shared_gui_components/OSCellWrapper.hpp
+++ b/src/shared_gui_components/OSCellWrapper.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSCELLWRAPPER_HPP
diff --git a/src/shared_gui_components/OSCheckBox.cpp b/src/shared_gui_components/OSCheckBox.cpp
index 6a95c318c..867d5c711 100644
--- a/src/shared_gui_components/OSCheckBox.cpp
+++ b/src/shared_gui_components/OSCheckBox.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSCheckBox.hpp"
diff --git a/src/shared_gui_components/OSCheckBox.hpp b/src/shared_gui_components/OSCheckBox.hpp
index 34df04034..7c87dc4f3 100644
--- a/src/shared_gui_components/OSCheckBox.hpp
+++ b/src/shared_gui_components/OSCheckBox.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSCHECKBOX_HPP
diff --git a/src/shared_gui_components/OSCollapsibleView.cpp b/src/shared_gui_components/OSCollapsibleView.cpp
index 7ca2721d6..f8d3521fd 100644
--- a/src/shared_gui_components/OSCollapsibleView.cpp
+++ b/src/shared_gui_components/OSCollapsibleView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSCollapsibleView.hpp"
diff --git a/src/shared_gui_components/OSCollapsibleView.hpp b/src/shared_gui_components/OSCollapsibleView.hpp
index 86fe41bcf..34d251677 100644
--- a/src/shared_gui_components/OSCollapsibleView.hpp
+++ b/src/shared_gui_components/OSCollapsibleView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSCOLLAPSIBLEVIEW_HPP
diff --git a/src/shared_gui_components/OSComboBox.cpp b/src/shared_gui_components/OSComboBox.cpp
index 228f3cd21..fa3de7d53 100644
--- a/src/shared_gui_components/OSComboBox.cpp
+++ b/src/shared_gui_components/OSComboBox.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSComboBox.hpp"
diff --git a/src/shared_gui_components/OSComboBox.hpp b/src/shared_gui_components/OSComboBox.hpp
index c2a2eba4f..7f13c6751 100644
--- a/src/shared_gui_components/OSComboBox.hpp
+++ b/src/shared_gui_components/OSComboBox.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSCOMBOBOX_HPP
diff --git a/src/shared_gui_components/OSConcepts.hpp b/src/shared_gui_components/OSConcepts.hpp
index e6e78e345..783d2178c 100644
--- a/src/shared_gui_components/OSConcepts.hpp
+++ b/src/shared_gui_components/OSConcepts.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSCONCEPTS_HPP
diff --git a/src/shared_gui_components/OSDialog.cpp b/src/shared_gui_components/OSDialog.cpp
index 2eb16ee59..627e762ce 100644
--- a/src/shared_gui_components/OSDialog.cpp
+++ b/src/shared_gui_components/OSDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSDialog.hpp"
diff --git a/src/shared_gui_components/OSDialog.hpp b/src/shared_gui_components/OSDialog.hpp
index 69691721e..a0dde5609 100644
--- a/src/shared_gui_components/OSDialog.hpp
+++ b/src/shared_gui_components/OSDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSDIALOG_HPP
diff --git a/src/shared_gui_components/OSDoubleEdit.cpp b/src/shared_gui_components/OSDoubleEdit.cpp
index d8baa3179..62376b9e7 100644
--- a/src/shared_gui_components/OSDoubleEdit.cpp
+++ b/src/shared_gui_components/OSDoubleEdit.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSDoubleEdit.hpp"
diff --git a/src/shared_gui_components/OSDoubleEdit.hpp b/src/shared_gui_components/OSDoubleEdit.hpp
index bd8301f72..e1885c677 100644
--- a/src/shared_gui_components/OSDoubleEdit.hpp
+++ b/src/shared_gui_components/OSDoubleEdit.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSDOUBLEEDIT_HPP
diff --git a/src/shared_gui_components/OSDragableView.cpp b/src/shared_gui_components/OSDragableView.cpp
index e173510e2..dd58e67cf 100644
--- a/src/shared_gui_components/OSDragableView.cpp
+++ b/src/shared_gui_components/OSDragableView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSDragableView.hpp"
diff --git a/src/shared_gui_components/OSDragableView.hpp b/src/shared_gui_components/OSDragableView.hpp
index de632638e..7b8e910ec 100644
--- a/src/shared_gui_components/OSDragableView.hpp
+++ b/src/shared_gui_components/OSDragableView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSDRAGABLEVIEW_HPP
diff --git a/src/shared_gui_components/OSGridController.cpp b/src/shared_gui_components/OSGridController.cpp
index 0a6892bf8..690d4101a 100644
--- a/src/shared_gui_components/OSGridController.cpp
+++ b/src/shared_gui_components/OSGridController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSGridController.hpp"
diff --git a/src/shared_gui_components/OSGridController.hpp b/src/shared_gui_components/OSGridController.hpp
index 66c8c599f..96ad1ccfa 100644
--- a/src/shared_gui_components/OSGridController.hpp
+++ b/src/shared_gui_components/OSGridController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSGRIDCONTROLLER_HPP
diff --git a/src/shared_gui_components/OSGridView.cpp b/src/shared_gui_components/OSGridView.cpp
index 76f91a60a..39a4682f5 100644
--- a/src/shared_gui_components/OSGridView.cpp
+++ b/src/shared_gui_components/OSGridView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSGridView.hpp"
diff --git a/src/shared_gui_components/OSGridView.hpp b/src/shared_gui_components/OSGridView.hpp
index 0cb133cfb..1413bc79f 100644
--- a/src/shared_gui_components/OSGridView.hpp
+++ b/src/shared_gui_components/OSGridView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSGRIDVIEW_HPP
diff --git a/src/shared_gui_components/OSIntegerEdit.cpp b/src/shared_gui_components/OSIntegerEdit.cpp
index 5ff5f8911..ad4056118 100644
--- a/src/shared_gui_components/OSIntegerEdit.cpp
+++ b/src/shared_gui_components/OSIntegerEdit.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSIntegerEdit.hpp"
diff --git a/src/shared_gui_components/OSIntegerEdit.hpp b/src/shared_gui_components/OSIntegerEdit.hpp
index 5a9df569d..a1b0ecf33 100644
--- a/src/shared_gui_components/OSIntegerEdit.hpp
+++ b/src/shared_gui_components/OSIntegerEdit.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSINTEGEREDIT_HPP
diff --git a/src/shared_gui_components/OSLineEdit.cpp b/src/shared_gui_components/OSLineEdit.cpp
index 3c808efae..935b59c1b 100644
--- a/src/shared_gui_components/OSLineEdit.cpp
+++ b/src/shared_gui_components/OSLineEdit.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSLineEdit.hpp"
diff --git a/src/shared_gui_components/OSLineEdit.hpp b/src/shared_gui_components/OSLineEdit.hpp
index 70235bf81..f35192c99 100644
--- a/src/shared_gui_components/OSLineEdit.hpp
+++ b/src/shared_gui_components/OSLineEdit.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSLINEEDIT_HPP
diff --git a/src/shared_gui_components/OSListController.cpp b/src/shared_gui_components/OSListController.cpp
index 6253b75b4..b11209d2a 100644
--- a/src/shared_gui_components/OSListController.cpp
+++ b/src/shared_gui_components/OSListController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSListController.hpp"
diff --git a/src/shared_gui_components/OSListController.hpp b/src/shared_gui_components/OSListController.hpp
index 8c325a77e..226f36621 100644
--- a/src/shared_gui_components/OSListController.hpp
+++ b/src/shared_gui_components/OSListController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSLISTCONTROLLER_HPP
diff --git a/src/shared_gui_components/OSListView.cpp b/src/shared_gui_components/OSListView.cpp
index c6838910d..8487db6a9 100644
--- a/src/shared_gui_components/OSListView.cpp
+++ b/src/shared_gui_components/OSListView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSListView.hpp"
diff --git a/src/shared_gui_components/OSListView.hpp b/src/shared_gui_components/OSListView.hpp
index ef3bc9286..57982a6ec 100644
--- a/src/shared_gui_components/OSListView.hpp
+++ b/src/shared_gui_components/OSListView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSLISTVIEW_HPP
diff --git a/src/shared_gui_components/OSLoadNamePixmapLineEdit.cpp b/src/shared_gui_components/OSLoadNamePixmapLineEdit.cpp
index 5fc513bd5..8997121fb 100644
--- a/src/shared_gui_components/OSLoadNamePixmapLineEdit.cpp
+++ b/src/shared_gui_components/OSLoadNamePixmapLineEdit.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSLoadNamePixmapLineEdit.hpp"
diff --git a/src/shared_gui_components/OSLoadNamePixmapLineEdit.hpp b/src/shared_gui_components/OSLoadNamePixmapLineEdit.hpp
index 7ee878e7f..1d7708868 100644
--- a/src/shared_gui_components/OSLoadNamePixmapLineEdit.hpp
+++ b/src/shared_gui_components/OSLoadNamePixmapLineEdit.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSLOADNAMEPIXMAPLINEEDIT_HPP
diff --git a/src/shared_gui_components/OSObjectSelector.cpp b/src/shared_gui_components/OSObjectSelector.cpp
index 847023002..c30661b3d 100644
--- a/src/shared_gui_components/OSObjectSelector.cpp
+++ b/src/shared_gui_components/OSObjectSelector.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSObjectSelector.hpp"
diff --git a/src/shared_gui_components/OSObjectSelector.hpp b/src/shared_gui_components/OSObjectSelector.hpp
index 9c976cfa9..513ea0065 100644
--- a/src/shared_gui_components/OSObjectSelector.hpp
+++ b/src/shared_gui_components/OSObjectSelector.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSOBJECTSELECTOR_HPP
diff --git a/src/shared_gui_components/OSQObjectController.cpp b/src/shared_gui_components/OSQObjectController.cpp
index e26eeceeb..fff580018 100644
--- a/src/shared_gui_components/OSQObjectController.cpp
+++ b/src/shared_gui_components/OSQObjectController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSQObjectController.hpp"
diff --git a/src/shared_gui_components/OSQObjectController.hpp b/src/shared_gui_components/OSQObjectController.hpp
index 8b3c34ea2..02c09aab9 100644
--- a/src/shared_gui_components/OSQObjectController.hpp
+++ b/src/shared_gui_components/OSQObjectController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSQOBJECTCONTROLLER_HPP
diff --git a/src/shared_gui_components/OSQuantityEdit.cpp b/src/shared_gui_components/OSQuantityEdit.cpp
index 9890acd28..d480dc84c 100644
--- a/src/shared_gui_components/OSQuantityEdit.cpp
+++ b/src/shared_gui_components/OSQuantityEdit.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSQuantityEdit.hpp"
diff --git a/src/shared_gui_components/OSQuantityEdit.hpp b/src/shared_gui_components/OSQuantityEdit.hpp
index 6951e6ec6..43267575a 100644
--- a/src/shared_gui_components/OSQuantityEdit.hpp
+++ b/src/shared_gui_components/OSQuantityEdit.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSQUANTITYEDIT_HPP
diff --git a/src/shared_gui_components/OSSwitch.cpp b/src/shared_gui_components/OSSwitch.cpp
index f7b2a12a7..e48ae294d 100644
--- a/src/shared_gui_components/OSSwitch.cpp
+++ b/src/shared_gui_components/OSSwitch.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSSwitch.hpp"
diff --git a/src/shared_gui_components/OSSwitch.hpp b/src/shared_gui_components/OSSwitch.hpp
index a7fea979f..0ec2ea8c6 100644
--- a/src/shared_gui_components/OSSwitch.hpp
+++ b/src/shared_gui_components/OSSwitch.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSSWITCH_HPP
diff --git a/src/shared_gui_components/OSUnsignedEdit.cpp b/src/shared_gui_components/OSUnsignedEdit.cpp
index 213b46cfc..2fc8ab17f 100644
--- a/src/shared_gui_components/OSUnsignedEdit.cpp
+++ b/src/shared_gui_components/OSUnsignedEdit.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSUnsignedEdit.hpp"
diff --git a/src/shared_gui_components/OSUnsignedEdit.hpp b/src/shared_gui_components/OSUnsignedEdit.hpp
index eb98962a2..8896158ef 100644
--- a/src/shared_gui_components/OSUnsignedEdit.hpp
+++ b/src/shared_gui_components/OSUnsignedEdit.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSUNSIGNEDEDIT_HPP
diff --git a/src/shared_gui_components/OSViewSwitcher.cpp b/src/shared_gui_components/OSViewSwitcher.cpp
index cde015c9b..126a942d7 100644
--- a/src/shared_gui_components/OSViewSwitcher.cpp
+++ b/src/shared_gui_components/OSViewSwitcher.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSViewSwitcher.hpp"
diff --git a/src/shared_gui_components/OSViewSwitcher.hpp b/src/shared_gui_components/OSViewSwitcher.hpp
index a3ea4f6f6..af115d7cf 100644
--- a/src/shared_gui_components/OSViewSwitcher.hpp
+++ b/src/shared_gui_components/OSViewSwitcher.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSVIEWSWITCHER_HPP
diff --git a/src/shared_gui_components/OSWidgetHolder.cpp b/src/shared_gui_components/OSWidgetHolder.cpp
index 0a8c502ea..e33d4377b 100644
--- a/src/shared_gui_components/OSWidgetHolder.cpp
+++ b/src/shared_gui_components/OSWidgetHolder.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "OSWidgetHolder.hpp"
diff --git a/src/shared_gui_components/OSWidgetHolder.hpp b/src/shared_gui_components/OSWidgetHolder.hpp
index 81188c7da..787f670d2 100644
--- a/src/shared_gui_components/OSWidgetHolder.hpp
+++ b/src/shared_gui_components/OSWidgetHolder.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_OSWIDGETHOLDER_HPP
diff --git a/src/shared_gui_components/PageNavigator.cpp b/src/shared_gui_components/PageNavigator.cpp
index bb7d5520c..e9dd08694 100644
--- a/src/shared_gui_components/PageNavigator.cpp
+++ b/src/shared_gui_components/PageNavigator.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "PageNavigator.hpp"
diff --git a/src/shared_gui_components/PageNavigator.hpp b/src/shared_gui_components/PageNavigator.hpp
index 3962ac884..cab188df0 100644
--- a/src/shared_gui_components/PageNavigator.hpp
+++ b/src/shared_gui_components/PageNavigator.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_PAGENAVIGATOR_HPP
diff --git a/src/shared_gui_components/ProcessEventsProgressBar.cpp b/src/shared_gui_components/ProcessEventsProgressBar.cpp
index 5776ae9a3..3ddee4600 100644
--- a/src/shared_gui_components/ProcessEventsProgressBar.cpp
+++ b/src/shared_gui_components/ProcessEventsProgressBar.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ProcessEventsProgressBar.hpp"
diff --git a/src/shared_gui_components/ProcessEventsProgressBar.hpp b/src/shared_gui_components/ProcessEventsProgressBar.hpp
index f99346b2a..09914a9f8 100644
--- a/src/shared_gui_components/ProcessEventsProgressBar.hpp
+++ b/src/shared_gui_components/ProcessEventsProgressBar.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_PROCESSEVENTSPROGRESSBAR_HPP
diff --git a/src/shared_gui_components/ProgressBarWithError.cpp b/src/shared_gui_components/ProgressBarWithError.cpp
index fbbe54546..a5c56e050 100644
--- a/src/shared_gui_components/ProgressBarWithError.cpp
+++ b/src/shared_gui_components/ProgressBarWithError.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "ProgressBarWithError.hpp"
diff --git a/src/shared_gui_components/ProgressBarWithError.hpp b/src/shared_gui_components/ProgressBarWithError.hpp
index 24bd8e64d..df9f151e5 100644
--- a/src/shared_gui_components/ProgressBarWithError.hpp
+++ b/src/shared_gui_components/ProgressBarWithError.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_PROGRESSBARWITHERROR_HPP
diff --git a/src/shared_gui_components/SyncMeasuresDialog.cpp b/src/shared_gui_components/SyncMeasuresDialog.cpp
index 4648aa3bd..568bcc3a5 100644
--- a/src/shared_gui_components/SyncMeasuresDialog.cpp
+++ b/src/shared_gui_components/SyncMeasuresDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "../shared_gui_components/SyncMeasuresDialog.hpp"
diff --git a/src/shared_gui_components/SyncMeasuresDialog.hpp b/src/shared_gui_components/SyncMeasuresDialog.hpp
index 3f1af1469..dce5b9a7f 100644
--- a/src/shared_gui_components/SyncMeasuresDialog.hpp
+++ b/src/shared_gui_components/SyncMeasuresDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_SYNCMEASURESDIALOG_HPP
diff --git a/src/shared_gui_components/SyncMeasuresDialogCentralWidget.cpp b/src/shared_gui_components/SyncMeasuresDialogCentralWidget.cpp
index 3d5bb21c6..ff27076c6 100644
--- a/src/shared_gui_components/SyncMeasuresDialogCentralWidget.cpp
+++ b/src/shared_gui_components/SyncMeasuresDialogCentralWidget.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "SyncMeasuresDialogCentralWidget.hpp"
diff --git a/src/shared_gui_components/SyncMeasuresDialogCentralWidget.hpp b/src/shared_gui_components/SyncMeasuresDialogCentralWidget.hpp
index 49097f196..b363f2823 100644
--- a/src/shared_gui_components/SyncMeasuresDialogCentralWidget.hpp
+++ b/src/shared_gui_components/SyncMeasuresDialogCentralWidget.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_SYNCMEASURESDIALOGCENTRALWIDGET_HPP
diff --git a/src/shared_gui_components/TIDItemModel.cpp b/src/shared_gui_components/TIDItemModel.cpp
index 08fdb0af0..deec934ff 100644
--- a/src/shared_gui_components/TIDItemModel.cpp
+++ b/src/shared_gui_components/TIDItemModel.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "TIDItemModel.hpp"
diff --git a/src/shared_gui_components/TIDItemModel.hpp b/src/shared_gui_components/TIDItemModel.hpp
index 252100f75..1d37ccb25 100644
--- a/src/shared_gui_components/TIDItemModel.hpp
+++ b/src/shared_gui_components/TIDItemModel.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_TIDITEMMODEL_HPP
diff --git a/src/shared_gui_components/TextEditDialog.cpp b/src/shared_gui_components/TextEditDialog.cpp
index b84ef60f3..3e767136b 100644
--- a/src/shared_gui_components/TextEditDialog.cpp
+++ b/src/shared_gui_components/TextEditDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "TextEditDialog.hpp"
diff --git a/src/shared_gui_components/TextEditDialog.hpp b/src/shared_gui_components/TextEditDialog.hpp
index 13f6ff4b8..5b988c446 100644
--- a/src/shared_gui_components/TextEditDialog.hpp
+++ b/src/shared_gui_components/TextEditDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_TEXTEDITDIALOG_HPP
diff --git a/src/shared_gui_components/WaitDialog.cpp b/src/shared_gui_components/WaitDialog.cpp
index c75ac1edb..9267960b6 100644
--- a/src/shared_gui_components/WaitDialog.cpp
+++ b/src/shared_gui_components/WaitDialog.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WaitDialog.hpp"
diff --git a/src/shared_gui_components/WaitDialog.hpp b/src/shared_gui_components/WaitDialog.hpp
index 1da759d29..6319d0a96 100644
--- a/src/shared_gui_components/WaitDialog.hpp
+++ b/src/shared_gui_components/WaitDialog.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_WAITDIALOG_HPP
diff --git a/src/shared_gui_components/WorkflowController.cpp b/src/shared_gui_components/WorkflowController.cpp
index 6c8b2382a..432eb78d3 100644
--- a/src/shared_gui_components/WorkflowController.cpp
+++ b/src/shared_gui_components/WorkflowController.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WorkflowController.hpp"
diff --git a/src/shared_gui_components/WorkflowController.hpp b/src/shared_gui_components/WorkflowController.hpp
index a08087588..fa7fba1c6 100644
--- a/src/shared_gui_components/WorkflowController.hpp
+++ b/src/shared_gui_components/WorkflowController.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_WORKFLOWCONTROLLER_HPP
diff --git a/src/shared_gui_components/WorkflowTools.cpp b/src/shared_gui_components/WorkflowTools.cpp
index 1836ceb1d..cf66d6e06 100644
--- a/src/shared_gui_components/WorkflowTools.cpp
+++ b/src/shared_gui_components/WorkflowTools.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WorkflowTools.hpp"
diff --git a/src/shared_gui_components/WorkflowTools.hpp b/src/shared_gui_components/WorkflowTools.hpp
index 454b376ab..d15914429 100644
--- a/src/shared_gui_components/WorkflowTools.hpp
+++ b/src/shared_gui_components/WorkflowTools.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_WORKFLOWTOOLS_HPP
diff --git a/src/shared_gui_components/WorkflowView.cpp b/src/shared_gui_components/WorkflowView.cpp
index 80068ada2..50564e119 100644
--- a/src/shared_gui_components/WorkflowView.cpp
+++ b/src/shared_gui_components/WorkflowView.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include "WorkflowView.hpp"
diff --git a/src/shared_gui_components/WorkflowView.hpp b/src/shared_gui_components/WorkflowView.hpp
index 72b0675e4..54530b124 100644
--- a/src/shared_gui_components/WorkflowView.hpp
+++ b/src/shared_gui_components/WorkflowView.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef SHAREDGUICOMPONENTS_WORKFLOWVIEW_HPP
diff --git a/src/utilities/OpenStudioApplicationPathHelpers.cxx.in b/src/utilities/OpenStudioApplicationPathHelpers.cxx.in
index 9f9ef186f..ff82e797d 100644
--- a/src/utilities/OpenStudioApplicationPathHelpers.cxx.in
+++ b/src/utilities/OpenStudioApplicationPathHelpers.cxx.in
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include
diff --git a/src/utilities/OpenStudioApplicationPathHelpers.hpp b/src/utilities/OpenStudioApplicationPathHelpers.hpp
index bd2188917..1a334ffc6 100644
--- a/src/utilities/OpenStudioApplicationPathHelpers.hpp
+++ b/src/utilities/OpenStudioApplicationPathHelpers.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OSAPP_UTILITIES_APPLICATIONPATHHELPERS_HPP
diff --git a/src/utilities/OpenStudioApplicationUtilitiesAPI.hpp b/src/utilities/OpenStudioApplicationUtilitiesAPI.hpp
index 50f8875d9..ffa0753dc 100644
--- a/src/utilities/OpenStudioApplicationUtilitiesAPI.hpp
+++ b/src/utilities/OpenStudioApplicationUtilitiesAPI.hpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#ifndef OSAPP_UTILITIES_OSAPP_UTILITIESAPI_HPP
diff --git a/src/utilities/test/OpenStudioApplicationPathHelpers_GTest.cpp b/src/utilities/test/OpenStudioApplicationPathHelpers_GTest.cpp
index 2adf81ca0..7c3a9e634 100644
--- a/src/utilities/test/OpenStudioApplicationPathHelpers_GTest.cpp
+++ b/src/utilities/test/OpenStudioApplicationPathHelpers_GTest.cpp
@@ -1,30 +1,6 @@
/***********************************************************************************************************************
-* OpenStudio(R), Copyright (c) 2020-2023, OpenStudio Coalition and other contributors. 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.
+* OpenStudio(R), Copyright (c) OpenStudio Coalition and other contributors.
+* See also https://openstudiocoalition.org/about/software_license/
***********************************************************************************************************************/
#include