Version: 8.3.0
CppContainer.cxx File Reference
#include <iostream>
#include <sstream>
#include <dlfcn.h>
#include "CppContainer.hxx"
#include "CppComponent.hxx"
#include "Exception.hxx"
#include <algorithm>
#include "YacsTrace.hxx"
Include dependency graph for CppContainer.cxx:

Go to the source code of this file.

Functions

void toupper (std::string &s)
 

Function Documentation

void toupper ( std::string &  s)
inline

Definition at line 288 of file CppContainer.cxx.

Referenced by YACS::ENGINE::LocalContainer::loadComponentLibrary().

289 {
290  transform (s.begin (), s.end (), s.begin (), (int(*)(int)) toupper);
291 }