HerbertKoelman / cpp-atmi

Application-to-Transaction Monitor Interface (ATMI) C++ library
http://herbertkoelman.github.com/cpp-atmi
Other
7 stars 0 forks source link

Extends TField<string> template with string operators #22

Closed HerbertKoelman closed 11 years ago

HerbertKoelman commented 11 years ago

Implement the opertors of class string into TField. It should be possible to write something like:

...
TField<string> name (EMPNAME);

name[x] = toupper(name [x]) ;
...

etc.