DryChem 1.0.0
A generic, compile-time C++ toolbox with no dependencies for the modern computational chemistry project.
Loading...
Searching...
No Matches
utilities.hpp
Go to the documentation of this file.
1// Copyright (c) 2020-2025 Cody R. Drisko. All rights reserved.
2// Licensed under the MIT License. See the LICENSE file in the project root for more information.
3//
4// Name: utilities.hpp - Version 1.3.0
5// Author: crdrisko
6// Date: 09/17/2020-12:35:51
7// Description: The public API for the Utilities section of the Common-Utilities library.
8// This header file should be included in all user programs using these utilities.
9//
10// Note: The internal implementation details associated with this API should not be used in any
11// user program as they are subject to change at any time without warning.
12
13#ifndef DRYCHEM_COMMON_UTILITIES_INCLUDE_COMMON_UTILS_UTILITIES_HPP
14#define DRYCHEM_COMMON_UTILITIES_INCLUDE_COMMON_UTILS_UTILITIES_HPP
15
19
21namespace DryChem
22{
23 inline namespace CppUtils
24 {
25 inline namespace Operators
26 {
27 using namespace ::CppUtils::Operators;
28 }
29
30 inline namespace Testing
31 {
32 using namespace ::CppUtils::Testing;
33 }
34 } // namespace CppUtils
35} // namespace DryChem
36
37#endif
Allow for a shorter namespace name for less using statements.
Definition errors.hpp:23