Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tools
frackit
Commits
1b8448a4
Commit
1b8448a4
authored
Jan 21, 2020
by
Dennis Gläser
Browse files
[common] introduce id class
parent
689d671d
Changes
2
Hide whitespace changes
Inline
Side-by-side
frackit/common/CMakeLists.txt
View file @
1b8448a4
install
(
FILES
extractctype.hh
extractdimension.hh
id.hh
math.hh
promotedtype.hh
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
/frackit/common
)
frackit/common/id.hh
0 → 100644
View file @
1b8448a4
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
/*****************************************************************************
* See the file COPYING for full copying permissions. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 2 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \file
* \brief Simple wrapper class to define ids/indices.
*/
#ifndef FRACKIT_ID_HH
#define FRACKIT_ID_HH
namespace
Frackit
{
/*!
* \brief Simple wrapper class to define ids/indices.
* This can be used wherever indices are passed
* to interfaces to avoid implicit conversion of
* function arguments.
*/
class
Id
{
public:
/*!
* \brief Construction from an index.
*/
explicit
Id
(
std
::
size_t
id
)
:
id_
(
id
)
{}
/*!
* \brief Retrieve the index.
*/
std
::
size_t
get
()
const
{
return
id_
;
}
private:
std
::
size_t
id_
;
};
}
// end namespace Frackit
#endif // FRACKIT_ID_HH
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