update ntCPP.html and TODO

This commit is contained in:
Marty Kraimer
2014-10-09 07:46:59 -04:00
parent 198a6a691f
commit c9d4f6aa02
3 changed files with 124 additions and 62 deletions
+21 -1
View File
@@ -1,2 +1,22 @@
<h1>TODO</h1>
<p>lots of code is a copy paste, consider inheritance and templates</p>
<h2>NTScalarArray</h2>
<p>NTScalarArrayBuilder::arrayValue</p>
<p>Should this be:</p>
<p>NTScalarArrayBuilder::value</p>
<p>This makes NTScalarArray consistent with other NTTypes.</p>
<h2>NTNameValue</h2>
<p>This does not have a value field like all the other NTTypes.
Perhaps instead of</p>
<pre><code>NTNameValue
string[] name
string[] value
</code></pre>
<p>It should be</p>
<pre><code>NTNameValue
value
string[] name
string[] value
</code></pre>
<h2>NTTable</h2>
<p>Should lables be label?
Compare with name,value from NTNameValue.</p>