Jazz 1.25.+
Loading...
Searching...
No Matches
bop.h
1/* Jazz (c) 2018-2025 kaalam.ai (The Authors of Jazz), using (under the same license):
2
3 1. Biomodelling - The AATBlockQueue class (c) Jacques BasaldĂșa, 2009-2012 licensed
4 exclusively for the use in the Jazz server software.
5
6 Copyright 2009-2012 Jacques BasaldĂșa
7
8 2. BBVA - Jazz: A lightweight analytical web server for data-driven applications.
9
10 Copyright 2016-2017 Banco Bilbao Vizcaya Argentaria, S.A.
11
12 This product includes software developed at
13
14 BBVA (https://www.bbva.com/)
15
16 3. LMDB, Copyright 2011-2017 Howard Chu, Symas Corp. All rights reserved.
17
18 Licensed under http://www.OpenLDAP.org/license.html
19
20
21 Licensed under the Apache License, Version 2.0 (the "License");
22 you may not use this file except in compliance with the License.
23 You may obtain a copy of the License at
24
25 http://www.apache.org/licenses/LICENSE-2.0
26
27 Unless required by applicable law or agreed to in writing, software
28 distributed under the License is distributed on an "AS IS" BASIS,
29 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 See the License for the specific language governing permissions and
31 limitations under the License.
32*/
33
34
35#include "src/jazz_bebop/fields.h"
36
37#if defined CATCH_TEST
38#ifndef INCLUDED_JAZZ_CATCH2
39#define INCLUDED_JAZZ_CATCH2
40
41#include "src/catch2/catch.hpp"
42
43#endif
44#endif
45
46
47#ifndef INCLUDED_JAZZ_BEBOP_BOP
48#define INCLUDED_JAZZ_BEBOP_BOP
49
50
54namespace jazz_bebop
55{
56
59class Bop : public Service {
60
61 public:
62
63 Bop(pLogger a_logger, pConfigFile a_config);
64 ~Bop();
65
66 private:
67
69
70};
71typedef Bop *pBop;
72
73} // namespace jazz_bebop
74
75#endif // ifndef INCLUDED_JAZZ_BEBOP_BOP
Bop: The Bebop compiler and decompiler.
Definition bop.h:59
OpCodes opcodes
The list of opcodes.
Definition bop.h:68
OpCodes: The opcodes.
Definition opcodes.h:198
A configuration file as a key/value store.
Definition utils.h:217
A simple logger.
Definition utils.h:245
A Jazz Service is a globally instanced configurable object that may allocate RAM.
Definition utils.h:285
A language to access any container by base using locators.
Definition base_api.cpp:39
Bop * pBop
A pointer to a Bop.
Definition bop.h:71