netxsimdg
Loading...
Searching...
No Matches
NZLevels.hpp
Go to the documentation of this file.
1
8#ifndef NZLEVELS_HPP
9#define NZLEVELS_HPP
10
11#include <cstddef>
12
13namespace Nextsim {
14
15class NZLevels {
16public:
17 // default constructors and destructors
18 static void set(size_t n);
19 static size_t get();
20
21private:
22 static size_t nZLevels;
23};
24
25} /* namespace Nextsim */
26
27#endif /* NZLEVELS_HPP */