Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ Core » C++ libraries
icon1.gif  C++ libraries [message #20647] Sun, 29 March 2009 17:08 Go to next message
MohamedMonem is currently offline  MohamedMonem
Messages: 7
Registered: March 2009
Promising Member
Hi all

I'm a beginner user of U++, now I want to use c++ libraries in my application like string, vector and queue , I know their are String and Vector template class in U++, but I need the others.

thanks in advance.

Mohamed
Re: C++ libraries [message #20650 is a reply to message #20647] Sun, 29 March 2009 22:18 Go to previous message
andrei_natanael is currently offline  andrei_natanael
Messages: 262
Registered: January 2009
Experienced Member
Nothing stop you to use them. You have to include the proper headers and start using STD classes. They are in std namespace. Using them is as simple as:
#include <vector>

typedef std::vector<int> intVector; // use vector class
intVector int_vec(10); // ...
// ...


Usually is not recommended to mix U++ types with C++ STD types but you are allowed to Smile

If you need more informations please be more specific.
Previous Topic: UTF8 and accented characters
Next Topic: Problem with Core/Mt.h Mutex and RWMutex
Goto Forum:
  


Current Time: Sun Apr 28 22:23:18 CEST 2024

Total time taken to generate the page: 0.06511 seconds