aboutsummaryrefslogtreecommitdiffstats
path: root/doc/api-documentation/html/rawverse_8h-source.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api-documentation/html/rawverse_8h-source.html')
-rw-r--r--doc/api-documentation/html/rawverse_8h-source.html80
1 files changed, 41 insertions, 39 deletions
diff --git a/doc/api-documentation/html/rawverse_8h-source.html b/doc/api-documentation/html/rawverse_8h-source.html
index d247400..07a101a 100644
--- a/doc/api-documentation/html/rawverse_8h-source.html
+++ b/doc/api-documentation/html/rawverse_8h-source.html
@@ -3,50 +3,52 @@
<title>rawverse.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
-<!-- Generated by Doxygen 1.2.15 -->
+<!-- Generated by Doxygen 1.2.17 -->
<center>
-<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="namespaces.html">Namespace List</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="classes.html">Alphabetical List</a> &nbsp; <a class="qindex" href="annotated.html">Compound 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><h1>rawverse.h</h1><div class="fragment"><pre>00001 <font class="comment">/******************************************************************************</font>
-00002 <font class="comment"> * rawverse.h - code for class 'RawVerse'- a module that reads raw text</font>
-00003 <font class="comment"> * files: ot and nt using indexs ??.bks ??.cps ??.vss</font>
-00004 <font class="comment"> * and provides lookup and parsing functions based on</font>
-00005 <font class="comment"> * class VerseKey</font>
-00006 <font class="comment"> */</font>
+<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="namespaces.html">Namespace List</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="classes.html">Alphabetical List</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="namespacemembers.html">Namespace Members</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; </center>
+<hr><h1>rawverse.h</h1><div class="fragment"><pre>00001 <span class="comment">/******************************************************************************</span>
+00002 <span class="comment"> * rawverse.h - code for class 'RawVerse'- a module that reads raw text</span>
+00003 <span class="comment"> * files: ot and nt using indexs ??.bks ??.cps ??.vss</span>
+00004 <span class="comment"> * and provides lookup and parsing functions based on</span>
+00005 <span class="comment"> * class VerseKey</span>
+00006 <span class="comment"> */</span>
00007
-00008 <font class="preprocessor">#ifndef RAWVERSE_H</font>
-00009 <font class="preprocessor"></font><font class="preprocessor">#define RAWVERSE_H</font>
-00010 <font class="preprocessor"></font>
-00011 <font class="preprocessor">#include &lt;filemgr.h&gt;</font>
-00012 <font class="preprocessor">#include &lt;fcntl.h&gt;</font>
+00008 <span class="preprocessor">#ifndef RAWVERSE_H</span>
+00009 <span class="preprocessor"></span><span class="preprocessor">#define RAWVERSE_H</span>
+00010 <span class="preprocessor"></span>
+00011 <span class="preprocessor">#include &lt;filemgr.h&gt;</span>
+00012 <span class="preprocessor">#include &lt;fcntl.h&gt;</span>
00013
-00014 <font class="preprocessor">#include &lt;defs.h&gt;</font>
+00014 <span class="preprocessor">#include &lt;defs.h&gt;</span>
00015
-00016 <font class="keyword">class </font>SWDLLEXPORT RawVerse {
-00017 <font class="keyword">static</font> <font class="keywordtype">int</font> instance; <font class="comment">// number of instantiated RawVerse objects or derivitives</font>
-00018 <font class="keyword">protected</font>:
-00019 FileDesc *idxfp[2];
-00020 FileDesc *textfp[2];
-00021
-00022 <font class="keywordtype">char</font> *path;
-00023 <font class="keywordtype">void</font> preptext (<font class="keywordtype">char</font> *buf);
-00024 <font class="keywordtype">void</font> settext (<font class="keywordtype">char</font> testmt, <font class="keywordtype">long</font> idxoff, <font class="keyword">const</font> <font class="keywordtype">char</font> *buf, <font class="keywordtype">long</font> len = 0);
-00025 <font class="keywordtype">void</font> linkentry (<font class="keywordtype">char</font> testmt, <font class="keywordtype">long</font> destidxoff, <font class="keywordtype">long</font> srcidxoff);
-00026
-00027 <font class="keyword">public</font>:
-00028 <font class="keywordtype">char</font> nl;
-00029 RawVerse (<font class="keyword">const</font> <font class="keywordtype">char</font> *ipath, <font class="keywordtype">int</font> fileMode = -1);
-00030 <font class="keyword">virtual</font> ~ RawVerse ();
-00031 <font class="keywordtype">void</font> findoffset (<font class="keywordtype">char</font> testmt, <font class="keywordtype">long</font> idxoff, <font class="keywordtype">long</font> *start,
-00032 <font class="keywordtype">unsigned</font> <font class="keywordtype">short</font> *end);
-00033 <font class="keywordtype">void</font> gettext (<font class="keywordtype">char</font> testmt, <font class="keywordtype">long</font> start, <font class="keywordtype">unsigned</font> <font class="keywordtype">short</font> size, <font class="keywordtype">char</font> *buf);
-00034 <font class="keyword">static</font> <font class="keywordtype">char</font> createModule (<font class="keyword">const</font> <font class="keywordtype">char</font> *path);
-00035 };
-00036
-00037
-00038 <font class="preprocessor">#endif</font>
-</pre></div><hr><address align="right"><small>Generated on Thu Jun 20 22:13:00 2002 for The Sword Project by
+00016 SWORD_NAMESPACE_START
+00017
+00018 <span class="keyword">class </span>SWDLLEXPORT RawVerse {
+00019 <span class="keyword">static</span> <span class="keywordtype">int</span> instance; <span class="comment">// number of instantiated RawVerse objects or derivitives</span>
+00020 <span class="keyword">protected</span>:
+00021 FileDesc *idxfp[2];
+00022 FileDesc *textfp[2];
+00023
+00024 <span class="keywordtype">char</span> *path;
+00025 <span class="keywordtype">void</span> preptext(<span class="keywordtype">char</span> *buf);
+00026 <span class="keywordtype">void</span> settext(<span class="keywordtype">char</span> testmt, <span class="keywordtype">long</span> idxoff, <span class="keyword">const</span> <span class="keywordtype">char</span> *buf, <span class="keywordtype">long</span> len = -1);
+00027 <span class="keywordtype">void</span> linkentry(<span class="keywordtype">char</span> testmt, <span class="keywordtype">long</span> destidxoff, <span class="keywordtype">long</span> srcidxoff);
+00028
+00029 <span class="keyword">public</span>:
+00030 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span> *nl;
+00031 RawVerse(<span class="keyword">const</span> <span class="keywordtype">char</span> *ipath, <span class="keywordtype">int</span> fileMode = -1);
+00032 <span class="keyword">virtual</span> ~ RawVerse();
+00033 <span class="keywordtype">void</span> findoffset(<span class="keywordtype">char</span> testmt, <span class="keywordtype">long</span> idxoff, <span class="keywordtype">long</span> *start,
+00034 <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> *end);
+00035 <span class="keywordtype">void</span> readtext(<span class="keywordtype">char</span> testmt, <span class="keywordtype">long</span> start, <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> size, <span class="keywordtype">char</span> *buf);
+00036 <span class="keyword">static</span> <span class="keywordtype">char</span> createModule(<span class="keyword">const</span> <span class="keywordtype">char</span> *path);
+00037 };
+00038
+00039 SWORD_NAMESPACE_END
+00040 <span class="preprocessor">#endif</span>
+</pre></div><hr><address style="align: right;"><small>Generated on Thu Oct 31 12:11:28 2002 for The Sword Project by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0
-width=110 height=53></a>1.2.15 </small></address>
+width=110 height=53></a>1.2.17 </small></address>
</body>
</html>