STIR 6.4.0
Verbosity.h
Go to the documentation of this file.
1//
2//
15/*
16 Copyright (C) 2014, University College London
17 This file is part of STIR.
18
19 SPDX-License-Identifier: Apache-2.0
20
21 See STIR/LICENSE.txt for details
22*/
23
24#ifndef __stir_Verbosity_H__
25#define __stir_Verbosity_H__
26#include "stir/common.h"
27
28START_NAMESPACE_STIR
29
34class Verbosity
35{
36public:
37 static int get();
38 static void set(int level);
39
40private:
41 Verbosity(); // Private so that it can not be called
42
43 int _verbosity_level;
44 static Verbosity* _instance;
45};
46
47END_NAMESPACE_STIR
48#endif
basic configuration include file