summaryrefslogtreecommitdiff
path: root/libformat/libformat/format.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libformat/libformat/format.hxx')
-rw-r--r--libformat/libformat/format.hxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/libformat/libformat/format.hxx b/libformat/libformat/format.hxx
index 9c813ac..c711c16 100644
--- a/libformat/libformat/format.hxx
+++ b/libformat/libformat/format.hxx
@@ -6,5 +6,10 @@
#include <libformat/export.hxx>
-LIBFORMAT_EXPORT std::string
-format (const std::string& greeting, const std::string& name);
+namespace format
+{
+ enum class volume {quiet, normal, loud};
+
+ LIBFORMAT_EXPORT std::string
+ message (const std::string& greeting, const std::string& name, volume);
+}