26#ifndef GAMSENGINECONFIGURATION_H
27#define GAMSENGINECONFIGURATION_H
29#include "gamslib_global.h"
34class GAMSEngineConfiguration
37 LIBSPEC GAMSEngineConfiguration(
const std::string &host,
38 const std::string &user,
39 const std::string &pw,
40 const std::string &space);
42 LIBSPEC ~GAMSEngineConfiguration();
45 LIBSPEC std::string host()
const;
48 LIBSPEC
void setHost(
const std::string &newHost);
51 LIBSPEC std::string username()
const;
54 LIBSPEC
void setUsername(
const std::string &newUsername);
57 LIBSPEC std::string password()
const;
60 LIBSPEC
void setPassword(
const std::string &newPassword);
63 LIBSPEC std::string jwt()
const;
66 LIBSPEC
void setJwt(
const std::string &newJwt);
69 LIBSPEC std::string space()
const;
72 LIBSPEC
void setSpace(
const std::string &newSpace);
76 std::string mUsername;
77 std::string mPassword;