Skip to content

Commit

Permalink
added missing provider handle
Browse files Browse the repository at this point in the history
  • Loading branch information
mdorier committed Aug 15, 2024
1 parent e90f205 commit 08904f7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions include/bedrock/ProviderHandle.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* (C) 2020 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __BEDROCK_PROVIDER_HANDLE_H
#define __BEDROCK_PROVIDER_HANDLE_H

#include <thallium.hpp>

namespace bedrock {

/**
* @brief A pointer to a ProviderHandle is returned by
* DependencyFinder::makeProviderHandle, wrapped as a
* std::shared_ptr<NamedDependency>.
*/
using ProviderHandle = thallium::provider_handle;

} // namespace bedrock

#endif

0 comments on commit 08904f7

Please sign in to comment.