Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Seitosh
Seitosh
Commits
6b01101e
Commit
6b01101e
authored
Dec 29, 2018
by
thomas.forbriger
Browse files
libtsxx [DOC][FIX]: fix member grouping for doxygen
parent
312d8599
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libs/libtsxx/tsxx.h
View file @
6b01101e
...
...
@@ -89,13 +89,13 @@ namespace ts {
* application of the const qualifier. This is not the case for
* samples, being addressed through the series with handle semantics.
*/
//@{
//
!
@{
typedef
S
Tseries
;
typedef
H
Theader
;
typedef
typename
Tseries
::
Tvalue
Tvalue
;
typedef
TimeSeries
<
Tseries
,
Theader
>
Ttimeseries
;
typedef
TimeSeries
<
typename
Tseries
::
Tcoc
,
Theader
>
Tconsttimeseries
;
//@}
//
!
@}
/*! \name Constructors.
*
...
...
@@ -103,32 +103,32 @@ namespace ts {
* in mutual assignments of different class derived from this
* template. They all are a valid Tseries by definition.
*/
//@{
//
!
@{
TimeSeries
()
{
}
TimeSeries
(
const
Tseries
&
s
,
const
Theader
&
h
)
:
Tseries
(
s
),
header
(
h
)
{
}
TimeSeries
(
const
Ttimeseries
&
s
)
:
Tseries
(
s
),
header
(
s
.
header
)
{
}
//@}
//
!
@}
/*! \name Assignment operators.
*/
//@{
//
!
@{
//! assign series to time series
Ttimeseries
&
operator
=
(
const
Tseries
&
s
)
{
this
->
Tseries
::
operator
=
(
s
);
return
(
*
this
);
}
//! set values of series in time series
Ttimeseries
&
operator
=
(
const
Tvalue
&
v
)
{
this
->
Tseries
::
operator
=
(
v
);
return
(
*
this
);
}
//@}
//
!
@}
/*! \name Type conversion.
*/
//@{
//
!
@{
//Tseries& series() { return(*this); }
operator
Tconsttimeseries
()
const
{
return
(
Tconsttimeseries
(
*
this
,
header
));
}
//@}
//
!
@}
public:
//! data header fields
Theader
header
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment