Cloudy
Spectral Synthesis Code for Astrophysics
Loading...
Searching...
No Matches
parse_species.h
Go to the documentation of this file.
1/* This file is part of Cloudy and is copyright (C)1978-2025 by Gary J. Ferland and
2 * others. For conditions of distribution and use see copyright notice in license.txt */
3
4#ifndef PARSE_SPECIES_H_
5#define PARSE_SPECIES_H_
6
7class Parser;
8void ParseSpecies(Parser &p);
9
10class species;
11void setProperties(species& sp);
12
13bool speciesOff(const string& label);
14
15void speciesCheck();
16
17#endif // PARSE_SPECIES_H_
18
Definition parser.h:43
Definition species.h:12
bool speciesOff(const string &label)
Definition parse_species.cpp:196
void setProperties(species &sp)
Definition parse_species.cpp:103
void speciesCheck()
Definition parse_species.cpp:179
void ParseSpecies(Parser &p)
Definition parse_species.cpp:16