mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-04 04:45:10 +02:00
Squashed 'src/ipc/libmultiprocess/' content from commit 35944ffd23fa
git-subtree-dir: src/ipc/libmultiprocess git-subtree-split: 35944ffd23fa26652b82210351d50e896ce16c8f
This commit is contained in:
17
example/printer.h
Normal file
17
example/printer.h
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright (c) 2021 The Bitcoin Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#ifndef EXAMPLE_PRINTER_H
|
||||
#define EXAMPLE_PRINTER_H
|
||||
|
||||
#include <string>
|
||||
|
||||
class Printer
|
||||
{
|
||||
public:
|
||||
virtual ~Printer() = default;
|
||||
virtual void print(const std::string& message) = 0;
|
||||
};
|
||||
|
||||
#endif // EXAMPLE_PRINTER_H
|
||||
Reference in New Issue
Block a user