-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4910 from NREL/4909_new_license
Fix #4909 - Update license to new format
- Loading branch information
Showing
3,869 changed files
with
8,097 additions
and
98,734 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
/*********************************************************************************************************************** | ||
* OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. | ||
* See also https://openstudio.net/license | ||
***********************************************************************************************************************/ | ||
|
||
#ifndef CSHARPAPI_HPP | ||
#define CSHARPAPI_HPP | ||
|
||
#if (_WIN32 || _MSC_VER) | ||
#ifdef openstudio_csharp_EXPORTS | ||
#define CSHARP_API __declspec(dllexport) | ||
#else | ||
#define CSHARP_API __declspec(dllimport) | ||
#endif | ||
#else | ||
#define CSHARP_API | ||
#endif | ||
#if (_WIN32 || _MSC_VER) | ||
# ifdef openstudio_csharp_EXPORTS | ||
# define CSHARP_API __declspec(dllexport) | ||
# else | ||
# define CSHARP_API __declspec(dllimport) | ||
# endif | ||
#else | ||
# define CSHARP_API | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
#include "openstudio_csharp.hpp" | ||
|
||
extern "C" { | ||
|
||
/*********************************************************************************************************************** | ||
* OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. | ||
* See also https://openstudio.net/license | ||
***********************************************************************************************************************/ | ||
|
||
void Init_openstudio_csharp(void) { | ||
#include "openstudio_csharp.hpp" | ||
|
||
} | ||
extern "C" | ||
{ | ||
|
||
void Init_openstudio_csharp(void) {} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
/*********************************************************************************************************************** | ||
* OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. | ||
* See also https://openstudio.net/license | ||
***********************************************************************************************************************/ | ||
|
||
#include "CSharpAPI.hpp" | ||
|
||
extern "C" { | ||
extern "C" | ||
{ | ||
|
||
CSHARP_API void Init_openstudio_csharp(void); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.