Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Mysql Configurator
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
Configurators
Mysql Configurator
Compare revisions
30fa4e8d29969688ba21dbebd22d5cb84bd606e4 to b509a242567340e57c56fe42fa3729538e7cb1df
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
bias/configurators/mysql-configurator
Select target project
No results found
b509a242567340e57c56fe42fa3729538e7cb1df
Select Git revision
Swap
Target
bias/configurators/mysql-configurator
Select target project
bias/configurators/mysql-configurator
1 result
30fa4e8d29969688ba21dbebd22d5cb84bd606e4
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
add license
· b509a242
Valerio Pastore
authored
9 months ago
b509a242
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
deps/Base-DAQ
+1
-1
1 addition, 1 deletion
deps/Base-DAQ
include/Mysql_Conf.h
+19
-0
19 additions, 0 deletions
include/Mysql_Conf.h
src/Mysql_Conf.cpp
+19
-0
19 additions, 0 deletions
src/Mysql_Conf.cpp
with
39 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/Mysql_Conf.h
View file @
b509a242
/*
**************************************************************************
* 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_Configurator.h>
...
...
This diff is collapsed.
Click to expand it.
src/Mysql_Conf.cpp
View file @
b509a242
/*
**************************************************************************
* 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
<Mysql_Conf.h>
#include
<boost/algorithm/string.hpp>
#include
<sstream>
...
...
This diff is collapsed.
Click to expand it.