Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
File Receiver
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BIAS
Receivers
File Receiver
Compare revisions
015f84d46c2384e06d500f8c7babc074d5aadfee to a61e774909f817ef2d0df50becd8892a8d9e3e10
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
bias/connection-protocols/file-receiver
Select target project
No results found
a61e774909f817ef2d0df50becd8892a8d9e3e10
Select Git revision
Branches
main
Tags
v1.0
Swap
Target
bias/connection-protocols/file-receiver
Select target project
bias/connection-protocols/file-receiver
1 result
015f84d46c2384e06d500f8c7babc074d5aadfee
Select Git revision
Branches
main
Tags
v1.0
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
add license
· a61e7749
Valerio Pastore
authored
9 months ago
a61e7749
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
deps/Base-DAQ
+1
-1
1 addition, 1 deletion
deps/Base-DAQ
include/File_Receiver.h
+19
-0
19 additions, 0 deletions
include/File_Receiver.h
src/Builder.cpp
+19
-0
19 additions, 0 deletions
src/Builder.cpp
src/File_Receiver.cpp
+19
-0
19 additions, 0 deletions
src/File_Receiver.cpp
with
58 additions
and
1 deletion
Base-DAQ
@
8ee59d82
Compare
e7991d1f
...
8ee59d82
Subproject commit
e7991d1f8c77412082c1bac8c1f9e6678b1a46
ee
Subproject commit
8ee59d82d13d9555f6b7386312e57181586709
ee
This diff is collapsed.
Click to expand it.
include/File_Receiver.h
View file @
a61e7749
/*
**************************************************************************
* Copyright (C) 2023 INAF
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License
* or (at your option) any later version. This program is distributed
* in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* Authors:
*
* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it
****************************************************************************
*/
#pragma once
#include
<Base_Receiver.h>
...
...
This diff is collapsed.
Click to expand it.
src/Builder.cpp
View file @
a61e7749
/*
**************************************************************************
* Copyright (C) 2023 INAF
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License
* or (at your option) any later version. This program is distributed
* in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* Authors:
*
* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it
****************************************************************************
*/
#include
<File_Receiver.h>
using
namespace
inaf
::
oasbo
::
Receivers
;
...
...
This diff is collapsed.
Click to expand it.
src/File_Receiver.cpp
View file @
a61e7749
/*
**************************************************************************
* Copyright (C) 2023 INAF
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License
* or (at your option) any later version. This program is distributed
* in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* Authors:
*
* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it
****************************************************************************
*/
#include
<iostream>
#include
<fstream>
#include
<string>
...
...
This diff is collapsed.
Click to expand it.