options.hxx
Go to the documentation of this file.
1 /*===========================================================================================================
2  *
3  * SHA-L - Simple Hybesis Algorithm Logger
4  *
5  * Copyright (c) Michael Jeulin-Lagarrigue
6  *
7  * Licensed under the MIT License, you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * https://github.com/michael-jeulinl/Simple-Hybesis-Algorithms-Logger/blob/master/LICENSE
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License is
13  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and limitations under the License.
15  *
16  * The above copyright notice and this permission notice shall be included in all copies or
17  * substantial portions of the Software.
18  *
19  *=========================================================================================================*/
20 #ifndef MODULE_LOGGER_OPTIONS_HXX
21 #define MODULE_LOGGER_OPTIONS_HXX
22 
23 namespace SHA_Logger
24 {
25  enum Options
26  {
27  OpGetMin = 0x00, // Retrieve only logs
28  OpGetName = 0x01, // Retrieve the name
29  OpGetDoc = 0x02, // Retrieve the technical documentation
30  OpGetInfo = 0x04, // Retrieve diverse information
31  OpGetSrc = 0x08, // Retrieve the original source code
32  OpIsSub = 0x10, // !SubRoutine Call - Do not build parameter but only indexes!
33  OpGetAll = OpGetName | OpGetDoc | OpGetInfo | OpGetSrc // Retrieve all information
34  };
35 }
36 
37 #endif // MODULE_LOGGER_OPTIONS_HXX