summaryrefslogtreecommitdiff
path: root/libformat/libformat/format.hxx
blob: 3641b67856e33f239971cc65086c72bf3d2f7605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <string>

#include <libformat/export.hxx>

namespace format
{
  enum class volume {quiet, normal, loud};

  LIBFORMAT_SYMEXPORT std::string
  format_hello (const std::string& greeting, const std::string& name, volume);
}