summaryrefslogtreecommitdiff
path: root/libformat/libformat/format.hxx
blob: c711c16981547670eebc7bd68406ab6b9aa0ce20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// file: libformat/format.hxx -*- C++ -*-

#pragma once

#include <string>

#include <libformat/export.hxx>

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

  LIBFORMAT_EXPORT std::string
  message (const std::string& greeting, const std::string& name, volume);
}