The SWORD Project  1.9.0.svnversion
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
stringmgr.h File Reference
#include <defs.h>
#include <swbuf.h>
#include <utilstr.h>
+ Include dependency graph for stringmgr.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  StringMgr
 

Functions

char * tolowerstr (char *t, unsigned int max=0)
 
char * toupperstr (char *t, unsigned int max=0)
 
char * toupperstr_utf8 (char *t, unsigned int max=0)
 

Function Documentation

char* tolowerstr ( char *  t,
unsigned int  max = 0 
)
inline

Definition at line 111 of file stringmgr.h.

111  {
112  return StringMgr::getSystemStringMgr()->lowerUTF8(t, max);
113 }
static StringMgr * getSystemStringMgr()
Definition: stringmgr.cpp:197
virtual char * lowerUTF8(char *text, unsigned int max=0) const
Definition: stringmgr.cpp:284
char* toupperstr ( char *  t,
unsigned int  max = 0 
)
inline

Definition at line 107 of file stringmgr.h.

107  {
108  return StringMgr::getSystemStringMgr()->upperUTF8(t, max);
109 }
static StringMgr * getSystemStringMgr()
Definition: stringmgr.cpp:197
virtual char * upperUTF8(char *text, unsigned int max=0) const
Definition: stringmgr.cpp:223
char* toupperstr_utf8 ( char *  t,
unsigned int  max = 0 
)
inline

Definition at line 118 of file stringmgr.h.

118  {
119  return StringMgr::getSystemStringMgr()->upperUTF8(t, max);
120 }
static StringMgr * getSystemStringMgr()
Definition: stringmgr.cpp:197
virtual char * upperUTF8(char *text, unsigned int max=0) const
Definition: stringmgr.cpp:223