/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 *
 * File:   docuils.h
 * Author: pgess
 *
 * Created on November 29, 2018, 3:58 PM
 * 
 * \brief   Documentation processing
 */

#ifndef DOC_H
#define DOC_H

#include <string>

std::string getDocumentationExampleById     (std::string filename, std::string id);
std::string getDocumentationExampleFromFile (std::string filename);
void        replace                         (std::string& str,
                                             const std::string& subA,
                                             const std::string& subB);

#endif /* DOC_H */

