summaryrefslogtreecommitdiffstats
path: root/src/common/config_fwd.h
blob: 817d1a0f8b033768644fa702e836137b9339c396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-

#pragma once

#ifdef WITH_SEASTAR
namespace ceph::common {
  class ConfigProxy;
}
using ConfigProxy = ceph::common::ConfigProxy;
#else
class ConfigProxy;
#endif