Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-cpplib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-cpplib
Merge requests
!33
Release 0.1
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Release 0.1
dev
into
main
Overview
0
Commits
59
Pipelines
1
Changes
1
Merged
Timm Fitschen
requested to merge
dev
into
main
3 years ago
Overview
0
Commits
59
Pipelines
1
Changes
1
0
0
Merge request reports
Viewing commit
53b810af
Prev
Next
Show latest version
1 file
+
16
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Verified
53b810af
WIP: fix includes
· 53b810af
Timm Fitschen
authored
3 years ago
include/caosdb/configuration.h
+
16
−
17
View file @ 53b810af
Edit in single-file editor
Open in Web IDE
Show full file
@@ -21,24 +21,23 @@
#ifndef CAOSDB_CONFIGURATION_H
#define CAOSDB_CONFIGURATION_H
#include
"caosdb/authentication.h"
// for Authenticator, PlainPassw...
#include
"caosdb/certificate_provider.h"
// for CertificateProvider, path
#include
"caosdb/exceptions.h"
// for ConfigurationError
#include
"caosdb/logging.h"
// for CAOSDB_LOG_...
#include
"caosdb/protobuf_helper.h"
// for reset_arena
#include
"caosdb/utility.h"
// for load_json_file
#include
"caosdb/authentication.h"
// for Authenticator, PlainPassw...
#include
"caosdb/certificate_provider.h"
// for CertificateProvider, path
#include
"caosdb/exceptions.h"
// for ConfigurationError
#include
"caosdb/logging.h"
// for SinkConfiguration, Loggin...
#include
"caosdb/utility.h"
// for load_json_file
#include
<google/protobuf/arena.h>
// for Arena
#include
<google/protobuf/extension_set.h>
// for Arena
#include
<grpcpp/security/credentials.h>
// for ChannelCredentials
#include
<boost/json/object.hpp>
// for object
#include
<boost/json/value.hpp>
// for value
#include
<boost/json/value_ref.hpp>
// for array, object
// IWYU pragma: no_include "boost/json/fwd.hpp"
#include
<boost/filesystem/operations.hpp>
// for exists
#include
<boost/filesystem/path.hpp>
// for path
#include
<boost/json/object.hpp>
// for object
#include
<boost/json/value.hpp>
// for value
#include
<boost/json/value_ref.hpp>
// IWYU pragma: keep
#include
<google/protobuf/arena.h>
// for Arena
#include
<grpcpp/security/credentials.h>
// for ChannelCredentials
#include
<iosfwd>
// for ostream
#include
<iostream>
#include
<memory>
// for unique_ptr, shared_ptr
#include
<string>
// for string
#include
<filesystem>
// for path, exists
#include
<iosfwd>
// for ostream
#include
<memory>
// for shared_ptr, unique_ptr
#include
<string>
// for string
namespace
caosdb
::
configuration
{
using
boost
::
json
::
array
;
Loading