summaryrefslogtreecommitdiff
path: root/libformat/libformat/format.hxx
blob: 489f63cb0be574e6efb6d050058375eae117596f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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 = volume::normal);
}