CbmRoot
Loading...
Searching...
No Matches
services/archive_explorer/app/Application.h
Go to the documentation of this file.
1/* Copyright (C) 2023 FIAS Frankfurt Institute for Advanced Studies, Frankfurt / Main
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Felix Weiglhofer [committer] */
4#pragma once
5
6#include <memory>
7
8#include "Options.h"
9
10namespace cbm::explore
11{
12
13 class Server;
14
16
17 public:
18 Application(const Options& options);
19
21
22 int Run();
23
24 private:
26
27 std::unique_ptr<Server> fServer;
28 };
29
30} // namespace cbm::explore