Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sdk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
The Openvibe Group
sdk
Commits
7af5df34
Commit
7af5df34
authored
5 years ago
by
MONSEIGNE Thibaut
Browse files
Options
Downloads
Patches
Plain Diff
Fix : some little warnings
parent
b30bf003
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/csv/include/csv/ovICSV.h
+3
-3
3 additions, 3 deletions
modules/csv/include/csv/ovICSV.h
modules/csv/src/ovCCSV.hpp
+1
-1
1 addition, 1 deletion
modules/csv/src/ovCCSV.hpp
with
4 additions
and
4 deletions
modules/csv/include/csv/ovICSV.h
+
3
−
3
View file @
7af5df34
...
@@ -119,14 +119,14 @@ namespace OpenViBE
...
@@ -119,14 +119,14 @@ namespace OpenViBE
*
*
* \param precision number of digits
* \param precision number of digits
*/
*/
virtual
void
setOutputFloatPrecision
(
size_t
precision
)
=
0
;
virtual
void
setOutputFloatPrecision
(
const
size_t
precision
)
=
0
;
/**
/**
* \brief Set the format type that will be written or read.
* \brief Set the format type that will be written or read.
*
*
* \param typeID Could be Streamed Matrix, Signal, Covariance Matrix, etc ...
* \param typeID Could be Streamed Matrix, Signal, Covariance Matrix, etc ...
*/
*/
virtual
void
setFormatType
(
EStreamType
typeID
)
=
0
;
virtual
void
setFormatType
(
const
EStreamType
typeID
)
=
0
;
/**
/**
* \brief Return the format type
* \brief Return the format type
...
@@ -140,7 +140,7 @@ namespace OpenViBE
...
@@ -140,7 +140,7 @@ namespace OpenViBE
*
*
* \param isActivated bool setting it to true will activate the LastMatrixOnly mode, false will disable it.
* \param isActivated bool setting it to true will activate the LastMatrixOnly mode, false will disable it.
*/
*/
virtual
void
setLastMatrixOnlyMode
(
bool
isActivated
)
=
0
;
virtual
void
setLastMatrixOnlyMode
(
const
bool
isActivated
)
=
0
;
/**
/**
* \brief Return the state of the LastMatrixOnly mode
* \brief Return the state of the LastMatrixOnly mode
...
...
This diff is collapsed.
Click to expand it.
modules/csv/src/ovCCSV.hpp
+
1
−
1
View file @
7af5df34
...
@@ -58,7 +58,7 @@ namespace OpenViBE
...
@@ -58,7 +58,7 @@ namespace OpenViBE
*/
*/
void
setOutputFloatPrecision
(
const
size_t
precision
)
override
{
m_oPrecision
=
precision
;
}
void
setOutputFloatPrecision
(
const
size_t
precision
)
override
{
m_oPrecision
=
precision
;
}
void
setFormatType
(
EStreamType
typeID
)
override
;
void
setFormatType
(
const
EStreamType
typeID
)
override
;
EStreamType
getFormatType
()
override
{
return
m_inputTypeID
;
}
EStreamType
getFormatType
()
override
{
return
m_inputTypeID
;
}
void
setLastMatrixOnlyMode
(
const
bool
isActivated
)
override
{
m_lastMatrixOnly
=
isActivated
;
}
void
setLastMatrixOnlyMode
(
const
bool
isActivated
)
override
{
m_lastMatrixOnly
=
isActivated
;
}
...
...
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