1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Base class | My Project</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i%7CSource+Code+Pro:400,400i,600" />
<link rel="stylesheet" href="m-dark+documentation.compiled.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<header><nav id="navigation">
<div class="m-container">
<div class="m-row">
<a href="index.html" id="m-navbar-brand" class="m-col-t-8 m-col-m-none m-left-m">My Project</a>
</div>
</div>
</nav></header>
<main><article>
<div class="m-container m-container-inflatable">
<div class="m-row">
<div class="m-col-l-10 m-push-l-1">
<h1>
Base <span class="m-thin">class</span>
</h1>
<p>Base class.</p>
<nav class="m-block m-default">
<h3>Contents</h3>
<ul>
<li>
Reference
<ul>
<li><a href="#derived-classes">Derived classes</a></li>
<li><a href="#pub-methods">Public functions</a></li>
<li><a href="#pri-methods">Private functions</a></li>
</ul>
</li>
</ul>
</nav>
<section id="derived-classes">
<h2><a href="#derived-classes">Derived classes</a></h2>
<dl class="m-doc">
<dt>
class <a href="classDerived.html" class="m-doc">Derived</a>
</dt>
<dd>A derived class.</dd>
<dt>
struct <a href="structFinal.html" class="m-doc">Final</a> <span class="m-label m-flat m-warning">final</span>
</dt>
<dd>Various uses of final keywords.</dd>
</dl>
</section>
<section id="pub-methods">
<h2><a href="#pub-methods">Public functions</a></h2>
<dl class="m-doc">
<dt id="a72db7eaef78cfaff4fa4e93ebc53cb91">
<span class="m-doc-wrap-bumper">void <a href="#a72db7eaef78cfaff4fa4e93ebc53cb91" class="m-doc-self">doThing</a>(</span><span class="m-doc-wrap">) const <span class="m-label m-flat m-warning">virtual</span> <span class="m-label m-flat m-success">noexcept(…)</span></span>
</dt>
<dd>Do a thing with crazy attribs.</dd>
</dl>
</section>
<section id="pri-methods">
<h2><a href="#pri-methods">Private functions</a></h2>
<dl class="m-doc">
<dt id="a116c39e85dca0cccea0c3ee107fb05c8">
<span class="m-doc-wrap-bumper">void <a href="#a116c39e85dca0cccea0c3ee107fb05c8" class="m-doc-self">doAnotherThing</a>(</span><span class="m-doc-wrap">) <span class="m-label m-flat m-warning">virtual</span></span>
</dt>
<dd>Do another thing, privately.</dd>
<dt>
<span class="m-doc-wrap-bumper">void <a href="#a29dff0e36707edf152f50836c52be808" class="m-doc">doYetAnotherThing</a>(</span><span class="m-doc-wrap">) <span class="m-label m-flat m-warning">virtual</span></span>
</dt>
<dd>Do yet another thing, privately.</dd>
</dl>
</section>
<section>
<h2>Function documentation</h2>
<section class="m-doc-details" id="a29dff0e36707edf152f50836c52be808"><div>
<h3>
<span class="m-doc-wrap-bumper">void Base::<wbr /></span><span class="m-doc-wrap"><span class="m-doc-wrap-bumper"><a href="#a29dff0e36707edf152f50836c52be808" class="m-doc-self">doYetAnotherThing</a>(</span><span class="m-doc-wrap">) <span class="m-label m-warning">virtual</span> <span class="m-label m-danger">private</span></span></span>
</h3>
<p>Do yet another thing, privately.</p>
<p>The override will get hidden because <code>INHERIT_DOCS</code> is disabled.</p>
</div></section>
</section>
</div>
</div>
</div>
</article></main>
</body>
</html>
|