Skip to content
This repository was archived by the owner on Jan 25, 2024. It is now read-only.

Commit 085109c

Browse files
committed
Added License Headers to all files
1 parent 3ce4af2 commit 085109c

36 files changed

+446
-35
lines changed

framework.sublime-project

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@
22
"folders":
33
[
44
{
5-
"path": "projects"
6-
},
7-
{
8-
"path": "cmake"
9-
},
10-
{
11-
"path": "share"
5+
"path": "D:\\remotes\\sed-stash\\biogears\\pfc\\assessment\\django\\sustain"
126
}
137
]
148
}

projects/libpfc_net/cpp/Protocol.cpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
/**************************************************************************************
2+
copyright 2019 applied research associates, inc.
3+
licensed under the apache license, version 2.0 (the "license"); you may not use
4+
this file except in compliance with the license. you may obtain a copy of the license
5+
at:
6+
http://www.apache.org/licenses/license-2.0
7+
unless required by applicable law or agreed to in writing, software distributed under
8+
the license is distributed on an "as is" basis, without warranties or
9+
conditions of any kind, either express or implied. see the license for the
10+
specific language governing permissions and limitations under the license.
11+
**************************************************************************************/
12+
13+
114
#include "sustain/framework/Protocol.h"
215

316
#include <sstream>

projects/libpfc_net/cpp/net/Multicast_Receiver.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/**************************************************************************************
2+
copyright 2019 applied research associates, inc.
3+
licensed under the apache license, version 2.0 (the "license"); you may not use
4+
this file except in compliance with the license. you may obtain a copy of the license
5+
at:
6+
http://www.apache.org/licenses/license-2.0
7+
unless required by applicable law or agreed to in writing, software distributed under
8+
the license is distributed on an "as is" basis, without warranties or
9+
conditions of any kind, either express or implied. see the license for the
10+
specific language governing permissions and limitations under the license.
11+
**************************************************************************************/
12+
113
#include <sustain/framework/net/Multicast_Receiver.h>
214

315
#include <thread>

projects/libpfc_net/cpp/net/Multicast_Sender.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/**************************************************************************************
2+
copyright 2019 applied research associates, inc.
3+
licensed under the apache license, version 2.0 (the "license"); you may not use
4+
this file except in compliance with the license. you may obtain a copy of the license
5+
at:
6+
http://www.apache.org/licenses/license-2.0
7+
unless required by applicable law or agreed to in writing, software distributed under
8+
the license is distributed on an "as is" basis, without warranties or
9+
conditions of any kind, either express or implied. see the license for the
10+
specific language governing permissions and limitations under the license.
11+
**************************************************************************************/
12+
113
#include <sustain/framework/net/Multicast_Sender.h>
214

315
#include <thread>

projects/libpfc_net/cpp/net/Service.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/**************************************************************************************
2+
copyright 2019 applied research associates, inc.
3+
licensed under the apache license, version 2.0 (the "license"); you may not use
4+
this file except in compliance with the license. you may obtain a copy of the license
5+
at:
6+
http://www.apache.org/licenses/license-2.0
7+
unless required by applicable law or agreed to in writing, software distributed under
8+
the license is distributed on an "as is" basis, without warranties or
9+
conditions of any kind, either express or implied. see the license for the
10+
specific language governing permissions and limitations under the license.
11+
**************************************************************************************/
12+
113
#include <sustain/framework/net/Service.h>
214

315
#include <sustain/framework/Protocol.h>

projects/libpfc_net/cpp/net/patterns/nanomsg_helper.h

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
#ifndef SUSTAIN_FRAMEWORK_NET_NANOMSG_HELPER_H
22
#define SUSTAIN_FRAMEWORK_NET_NANOMSG_HELPER_H
33

4+
/**************************************************************************************
5+
copyright 2019 applied research associates, inc.
6+
licensed under the apache license, version 2.0 (the "license"); you may not use
7+
this file except in compliance with the license. you may obtain a copy of the license
8+
at:
9+
http://www.apache.org/licenses/license-2.0
10+
unless required by applicable law or agreed to in writing, software distributed under
11+
the license is distributed on an "as is" basis, without warranties or
12+
conditions of any kind, either express or implied. see the license for the
13+
specific language governing permissions and limitations under the license.
14+
**************************************************************************************/
15+
416
#include <sustain/framework/util/Error.h>
517

618
#include <nanomsg/nn.h>
@@ -63,4 +75,4 @@ inline Error nano_to_Error(int code)
6375
}
6476
//-------------------------------------------------------------------------------
6577
}
66-
#endif //SUSTAIN_FRAMEWORK_NET_NANOMSG_HELPER_H
78+
#endif //SUSTAIN_FRAMEWORK_NET_NANOMSG_HELPER_H

projects/libpfc_net/cpp/net/patterns/pub_sub/Publisher.cpp

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/**************************************************************************************
2+
copyright 2019 applied research associates, inc.
3+
licensed under the apache license, version 2.0 (the "license"); you may not use
4+
this file except in compliance with the license. you may obtain a copy of the license
5+
at:
6+
http://www.apache.org/licenses/license-2.0
7+
unless required by applicable law or agreed to in writing, software distributed under
8+
the license is distributed on an "as is" basis, without warranties or
9+
conditions of any kind, either express or implied. see the license for the
10+
specific language governing permissions and limitations under the license.
11+
**************************************************************************************/
12+
113
#include <sustain/framework/net/patterns/pub_sub/Publisher.h>
214

315
#include <iostream>
@@ -125,4 +137,4 @@ void PubSub_Publisher::shutdown()
125137
}
126138
}
127139
//-----------------------------------------------------------------------------
128-
}
140+
}

projects/libpfc_net/cpp/net/patterns/pub_sub/Subscriber.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/**************************************************************************************
2+
copyright 2019 applied research associates, inc.
3+
licensed under the apache license, version 2.0 (the "license"); you may not use
4+
this file except in compliance with the license. you may obtain a copy of the license
5+
at:
6+
http://www.apache.org/licenses/license-2.0
7+
unless required by applicable law or agreed to in writing, software distributed under
8+
the license is distributed on an "as is" basis, without warranties or
9+
conditions of any kind, either express or implied. see the license for the
10+
specific language governing permissions and limitations under the license.
11+
**************************************************************************************/
12+
113
#include <sustain/framework/net/patterns/pub_sub/Subscriber.h>
214

315
#include <thread>

projects/libpfc_net/cpp/net/patterns/req_rep/Client.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/**************************************************************************************
2+
copyright 2019 applied research associates, inc.
3+
licensed under the apache license, version 2.0 (the "license"); you may not use
4+
this file except in compliance with the license. you may obtain a copy of the license
5+
at:
6+
http://www.apache.org/licenses/license-2.0
7+
unless required by applicable law or agreed to in writing, software distributed under
8+
the license is distributed on an "as is" basis, without warranties or
9+
conditions of any kind, either express or implied. see the license for the
10+
specific language governing permissions and limitations under the license.
11+
**************************************************************************************/
12+
113
#include <sustain/framework/net/patterns/req_rep/Client.h>
214

315
#include <thread>

projects/libpfc_net/cpp/net/patterns/req_rep/Server.cpp

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/**************************************************************************************
2+
copyright 2019 applied research associates, inc.
3+
licensed under the apache license, version 2.0 (the "license"); you may not use
4+
this file except in compliance with the license. you may obtain a copy of the license
5+
at:
6+
http://www.apache.org/licenses/license-2.0
7+
unless required by applicable law or agreed to in writing, software distributed under
8+
the license is distributed on an "as is" basis, without warranties or
9+
conditions of any kind, either express or implied. see the license for the
10+
specific language governing permissions and limitations under the license.
11+
**************************************************************************************/
12+
113
#include <sustain/framework/net/patterns/req_rep/Server.h>
214

315
#include <thread>
@@ -108,4 +120,4 @@ void ReqRep_Server::shutdown()
108120
_impl->running = false;
109121
}
110122
//-------------------------------------------------------------------------------
111-
}
123+
}

0 commit comments

Comments
 (0)