CMS 3D CMS Logo

Public Member Functions | Public Attributes

ora::MappingRules::ToUpper Struct Reference

List of all members.

Public Member Functions

char operator() (char c) const
 ToUpper (const std::locale &l)

Public Attributes

std::locale const & loc

Detailed Description

Definition at line 77 of file MappingRules.h.


Constructor & Destructor Documentation

ora::MappingRules::ToUpper::ToUpper ( const std::locale &  l) [inline]

Definition at line 78 of file MappingRules.h.

:loc(l) {}

Member Function Documentation

char ora::MappingRules::ToUpper::operator() ( char  c) const [inline]

Definition at line 79 of file MappingRules.h.

References loc.

{ return std::toupper(c,loc); }

Member Data Documentation

std::locale const& ora::MappingRules::ToUpper::loc

Definition at line 80 of file MappingRules.h.

Referenced by operator()().