Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
HAPI_Text.cc
Go to the documentation of this file.
1/*
2# <<BEGIN-copyright>>
3# Copyright 2019, Lawrence Livermore National Security, LLC.
4# This file is part of the gidiplus package (https://github.com/LLNL/gidiplus).
5# gidiplus is licensed under the MIT license (see https://opensource.org/licenses/MIT).
6# SPDX-License-Identifier: MIT
7# <<END-copyright>>
8*/
9
10#include "HAPI.hpp"
11
12namespace HAPI {
13
14/*
15=========================================================
16 *
17 * @return
18 */
20 m_text( "" ) {
21
22}
23/*
24=========================================================
25 *
26 * @param a_text text string
27 * @return
28 */
29Text::Text( std::string const &a_text ) :
30 m_text( a_text ) {
31
32}
33/*
34=========================================================
35*/
37
38}
39
40}
41
Definition HAPI.hpp:34