preCICE
Loading...
Searching...
No Matches
SharedPointer.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <memory>
4
5namespace precice::action {
6
7class Action;
9
10using PtrAction = std::unique_ptr<Action>;
11using PtrActionConfiguration = std::shared_ptr<ActionConfiguration>;
12
13} // namespace precice::action
Configures an Action subclass object.
Abstract base class for configurable actions on data and/or meshes.
Definition Action.hpp:14
contains actions to modify exchanged data.
Definition Action.hpp:6
std::shared_ptr< ActionConfiguration > PtrActionConfiguration
std::unique_ptr< Action > PtrAction