summaryrefslogtreecommitdiff
path: root/src/app_console/include/app_console.hpp
blob: 5981cc043f38f0a14253048aeacc2a5ca3fa7c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright 2023 jacqueline <me@jacqueline.id.au>
 *
 * SPDX-License-Identifier: GPL-3.0-only
 */

#pragma once

#include <memory>

#include "bluetooth.hpp"
#include "console.hpp"
#include "database.hpp"
#include "samd.hpp"
#include "service_locator.hpp"
#include "track_queue.hpp"

namespace console {

class AppConsole : public Console {
 public:
  static std::shared_ptr<system_fsm::ServiceLocator> sServices;

 protected:
  virtual auto RegisterExtraComponents() -> void;
};

}  // namespace console