Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

Isis 3 Programmer Reference
Environment.h
1#ifndef Environment_h
2#define Environment_h
3
8
9/* SPDX-License-Identifier: CC0-1.0 */
10
11class QString;
12
13namespace Isis {
14
36 class Environment {
37 public:
38 ~Environment() {}
39
40 static QString userName();
41 static QString hostName();
42 static QString isisVersion();
43 static QString aleVersion();
44
45 static QString getEnvironmentValue(QString, QString);
46 protected:
47 Environment();
48
49
50 private:
56 static Environment automaticEnvironmentSetup;
57 };
58}
59
60#endif
static QString isisVersion()
static QString hostName()
static QString aleVersion()
static QString userName()
@Returns the user name.
static Environment automaticEnvironmentSetup
Construct an environment in static space to initialize some global Isis environment options.
Definition Environment.h:56
static QString getEnvironmentValue(QString, QString)
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16