Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90365488
field_helpers.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 00:23
Size
1 KB
Mime Type
text/x-c
Expires
Sun, Nov 3, 00:23 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22062833
Attached To
rMUSPECTRE µSpectre
field_helpers.hh
View Options
/**
* file field_helpers.hh
*
* @author Till Junge <till.junge@epfl.ch>
*
* @date 30 Aug 2018
*
* @brief helper functions that needed to be sequestered to avoid circular
* inclusions
*
* Copyright © 2018 Till Junge
*
* µSpectre 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 3, or (at
* your option) any later version.
*
* µSpectre 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 GNU Emacs; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef FIELD_HELPERS_H
#define FIELD_HELPERS_H
#include <memory>
namespace muSpectre {
/**
* Factory function, guarantees that only fields get created that
* are properly registered and linked to a collection.
*/
template <class FieldType, class FieldCollection, typename... Args>
inline FieldType &
make_field(std::string unique_name,
FieldCollection & collection,
Args&&... args) {
std::unique_ptr<FieldType> ptr{
new FieldType(unique_name, collection, args...)};
auto& retref{*ptr};
collection.register_field(std::move(ptr));
return retref;
}
} // muSpectre
#endif /* FIELD_HELPERS_H */
Event Timeline
Log In to Comment