Text to HTML Converter
10
template function to create a boost::shared_ptr in the form
boost::shared_ptr classPtr = new_ptr(Arg1, Arg2);
You can also make new_ptr_access a friend of className and make the constructor and destructor private.
This keeps the end user from:
Creating an instance manually on the heap
Creating an instance manually on the stack
Deleting a shared_ptr manually using "delete get()"
boost::shared_ptr classPtr = new_ptr(Arg1, Arg2);
You can also make new_ptr_access a friend of className and make the constructor and destructor private.
This keeps the end user from:
Creating an instance manually on the heap
Creating an instance manually on the stack
Deleting a shared_ptr manually using "delete get()"
6
boost::format gives you the ablility to safely use printf like formatting as well as positional format specifiers ala .NET.
7
Simple tests for dir and file existance. Path creation and removal.
31
a simple css way to add shadow to tables and Divs
13
Using styles we can add scrollbars for large table where the space is a constraint
8
Add rows into a table dynamically using js,DOM
11
This function will run all functions that are to be executed one by one on page load with specified/added orde
9
Put a break in a tooltip (limited chars)
10
Transform any basic type to string. Very handy for log messages
Usage:
int i(12);
float j(3.14);
cout
Usage:
int i(12);
float j(3.14);
cout
8
Converts a string representation of a number with any base(binary, octal, decimal, hexadecimal, up to base 36) to a long int.









