summaryrefslogtreecommitdiff
path: root/doc/html/RtError_8h-source.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/RtError_8h-source.html')
-rw-r--r--doc/html/RtError_8h-source.html64
1 files changed, 64 insertions, 0 deletions
diff --git a/doc/html/RtError_8h-source.html b/doc/html/RtError_8h-source.html
new file mode 100644
index 0000000..d216750
--- /dev/null
+++ b/doc/html/RtError_8h-source.html
@@ -0,0 +1,64 @@
+<HTML>
+<HEAD>
+<TITLE>The RtAudio Tutorial</TITLE>
+<LINK HREF="doxygen.css" REL="stylesheet" TYPE="text/css">
+</HEAD>
+<BODY BGCOLOR="#FFFFFF">
+<CENTER>
+<a class="qindex" href="index.html">Tutorial</a> &nbsp; <a class="qindex" href="annotated.html">Class/Enum List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; </CENTER>
+<HR>
+<!-- Generated by Doxygen 1.3.4 -->
+<h1>RtError.h</h1><div class="fragment"><pre>00001 <span class="comment">/************************************************************************/</span>
+00010 <span class="comment">/************************************************************************/</span>
+00011
+00012 <span class="preprocessor">#ifndef RTERROR_H</span>
+00013 <span class="preprocessor"></span><span class="preprocessor">#define RTERROR_H</span>
+00014 <span class="preprocessor"></span>
+00015 <span class="preprocessor">#include &lt;iostream&gt;</span>
+00016 <span class="preprocessor">#include &lt;string&gt;</span>
+00017
+<a name="l00018"></a><a class="code" href="classRtError.html">00018</a> <span class="keyword">class </span><a class="code" href="classRtError.html">RtError</a>
+00019 {
+00020 <span class="keyword">public</span>:
+<a name="l00022"></a><a class="code" href="classRtError.html#w11">00022</a> <span class="keyword">enum</span> <a class="code" href="classRtError.html#w11">Type</a> {
+00023 <a class="code" href="classRtError.html#w11w0">WARNING</a>,
+00024 <a class="code" href="classRtError.html#w11w1">DEBUG_WARNING</a>,
+00025 <a class="code" href="classRtError.html#w11w2">UNSPECIFIED</a>,
+00026 <a class="code" href="classRtError.html#w11w3">NO_DEVICES_FOUND</a>,
+00027 <a class="code" href="classRtError.html#w11w4">INVALID_DEVICE</a>,
+00028 <a class="code" href="classRtError.html#w11w5">INVALID_STREAM</a>,
+00029 <a class="code" href="classRtError.html#w11w6">MEMORY_ERROR</a>,
+00030 <a class="code" href="classRtError.html#w11w7">INVALID_PARAMETER</a>,
+00031 <a class="code" href="classRtError.html#w11w8">DRIVER_ERROR</a>,
+00032 <a class="code" href="classRtError.html#w11w9">SYSTEM_ERROR</a>,
+00033 <a class="code" href="classRtError.html#w11w10">THREAD_ERROR</a>
+00034 };
+00035
+00036 <span class="keyword">protected</span>:
+00037 std::string message_;
+00038 <a class="code" href="classRtError.html#w11">Type</a> type_;
+00039
+00040 <span class="keyword">public</span>:
+<a name="l00042"></a><a class="code" href="classRtError.html#a0">00042</a> <a class="code" href="classRtError.html#a0">RtError</a>(<span class="keyword">const</span> std::string&amp; message, Type type = RtError::UNSPECIFIED) : message_(message), type_(type){}
+00043
+<a name="l00045"></a><a class="code" href="classRtError.html#a1">00045</a> <span class="keyword">virtual</span> <a class="code" href="classRtError.html#a1">~RtError</a>(<span class="keywordtype">void</span>) {};
+00046
+<a name="l00048"></a><a class="code" href="classRtError.html#a2">00048</a> <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classRtError.html#a2">printMessage</a>(<span class="keywordtype">void</span>) { std::cerr &lt;&lt; <span class="charliteral">'\n'</span> &lt;&lt; message_ &lt;&lt; <span class="stringliteral">"\n\n"</span>; }
+00049
+<a name="l00051"></a><a class="code" href="classRtError.html#a3">00051</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classRtError.html#w11">Type</a>&amp; <a class="code" href="classRtError.html#a3">getType</a>(<span class="keywordtype">void</span>) { <span class="keywordflow">return</span> type_; }
+00052
+<a name="l00054"></a><a class="code" href="classRtError.html#a4">00054</a> <span class="keyword">virtual</span> <span class="keyword">const</span> std::string&amp; <a class="code" href="classRtError.html#a4">getMessage</a>(<span class="keywordtype">void</span>) { <span class="keywordflow">return</span> message_; }
+00055
+<a name="l00057"></a><a class="code" href="classRtError.html#a5">00057</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="classRtError.html#a5">getMessageString</a>(<span class="keywordtype">void</span>) { <span class="keywordflow">return</span> message_.c_str(); }
+00058 };
+00059
+00060 <span class="preprocessor">#endif</span>
+</pre></div><HR>
+
+<table><tr><td><img src="../images/mcgill.gif" width=165></td>
+ <td>&copy;2001-2004 Gary P. Scavone, McGill University. All Rights Reserved.<br>
+ Maintained by Gary P. Scavone, <a href="mailto:gary@music.mcgill.ca">gary@music.mcgill.ca</a></td></tr>
+</table>
+
+</BODY>
+</HTML>