Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CL 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
CL Configurator
Commits
d9a305dc
Commit
d9a305dc
authored
1 year ago
by
Valerio Pastore
Browse files
Options
Downloads
Patches
Plain Diff
adding doxygen
parent
040a6736
No related branches found
Branches containing commit
No related tags found
1 merge request
!1
Dev
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/CL_Conf.h
+19
-3
19 additions, 3 deletions
include/CL_Conf.h
with
19 additions
and
3 deletions
include/CL_Conf.h
+
19
−
3
View file @
d9a305dc
...
...
@@ -4,20 +4,36 @@
namespace
inaf
::
oasbo
::
Configurators
{
/**
* @brief The CLConfigurator class is a concrete implementation of the BaseConfigurator class.
* It provides functionality to read and push configurations from/to a source using command line arguments (--param1 --param2 and so on).
* Check the Base_Configurator.h file for more information.
*/
class
CLConfigurator
:
public
BaseConfigurator
{
protected:
int
argc
;
char
**
argv
;
int
argc
;
/**< The number of command line arguments. */
char
**
argv
;
/**< The array of command line arguments. */
public:
/**
* @brief Constructs a CLConfigurator object with the specified command line arguments.
* @param argc The number of command line arguments.
* @param argv The array of command line arguments.
*/
CLConfigurator
(
int
argc
,
char
**
argv
);
int
readConfigFromSource
()
override
;
int
readConfigFromSource
(
std
::
string
target
)
override
;
int
pushConfigToSource
()
override
;
int
pushConfigToSource
(
std
::
string
target
)
override
;
int
insert
(
std
::
map
<
std
::
string
,
std
::
string
>
,
std
::
string
target
)
override
;
~
CLConfigurator
()
{
}
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment