From 680d88de689c4df0b19227ad7fff24d6be235588 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 21 Jun 2014 08:50:48 -0700 Subject: [PATCH] Add Usage section. --- doc/index.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/doc/index.rst b/doc/index.rst index 2fd2ed76..811887f7 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -2,6 +2,22 @@ .. _string-formatting-api: +Usage +----- + +To use the C++ Format library, add ``format.h`` and ``format.cc`` from +one of the `release archives `__ +or the `Git repository `__ to your project. + +If you are using Visual Studio with precompiled headers, you might need to add +the line + +:: + + #include "stdafx.h" + +before other includes in ``format.cc``. + C++ Format Library API ----------------------