Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F4824253
docutils.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Aug 25, 3:13 AM
Size
865 B
Mime Type
text/x-c
Expires
Thu, Aug 27, 3:13 AM (1 d, 5 h)
Engine
blob
Format
Raw Data
Handle
284329
Attached To
rXR Xreate
docutils.h
View Options
/* 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);
void replaceAll (std::string& str,
const std::string& subA,
const std::string& subB);
#endif /* DOC_H */
Event Timeline
Log In to Comment