/**
* @file system.hpp
* @brief J Library System ヘッダファイル。
* @copyright 2001 - 2024 Nomura Kei
* @depends
* j.hpp
*/
#ifndef J_LANG_SYSTEM_HPP
#define J_LANG_SYSTEM_HPP
#include <j.hpp>
#include <j/lang/string.hpp>
#include <j/lang/dl.hpp>
#include <j/lang/env.hpp>
namespace j
{
namespace lang
{
namespace System
{
// ライブラリロード
// @see j/lang/Dl
// Dl loadLibrary(const String &libname);
// 環境変数取得
// String getenv(const String &name);
// long currentTimeMillis()
// exit(int status);
// Map getenv();
// Properties getProperties
// String getProperty(const String& key, const String& def = String())
// String setProperty(const String& key, const String& value);
} // namespace System
} // namespace lang
} // namespace j
#endif // J_LANG_SYSTEM_HPP