added some comments (what to do)

git-svn-id: svn://ttmath.org/publicrep/morm/trunk@1220 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2019-09-25 17:21:12 +00:00
parent ac67f0079a
commit d9dc49d699
2 changed files with 15 additions and 1 deletions

View File

@ -204,7 +204,11 @@ public:
}
/*
* IMPLEMENT ME
* esc for: signed char, wchar_t, char16_t, char32_t
*
*/
virtual void esc(char val, PT::TextStream & stream);
virtual void esc(unsigned char val, PT::TextStream & stream);
@ -608,6 +612,11 @@ protected:
virtual void put_name_value_separator();
/*
* IMPLEMENT ME
* put_type for: signed char, wchar_t, char16_t, char32_t
*
*/
virtual void put_type(char val, PT::TextStream & stream);
virtual void put_type(unsigned char val, PT::TextStream & stream);

View File

@ -213,6 +213,11 @@ protected:
/////////////////////////////////
/*
* IMPLEMENT ME
* field methods for such field_values: signed char, wchar_t, char16_t, char32_t, std::u16string, std::u32string
*
*/
void field(const wchar_t * field_name, char & field_value, bool insertable = true, bool updatable = true, bool is_primary_key = false)
{