mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-24 18:40:38 +00:00
24 lines
358 B
C++
24 lines
358 B
C++
/*
|
|
* Copyright (C) 2017-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace seastar {
|
|
|
|
template <typename T>
|
|
class shared_ptr;
|
|
|
|
template <typename T, typename... A>
|
|
shared_ptr<T> make_shared(A&&... a);
|
|
|
|
}
|
|
|
|
using namespace seastar;
|
|
using seastar::shared_ptr;
|
|
using seastar::make_shared;
|