Skip to content
Snippets Groups Projects
Commit 10863b85 authored by Nina Džugasová's avatar Nina Džugasová Committed by Tomáš Oberhuber
Browse files

Added comment to String constructor.

parent 0d2a9b33
No related branches found
No related tags found
1 merge request!15Nina
......@@ -41,10 +41,11 @@ public:
//! Constructor from const char*
String( const char* str );
//! Constructor with char pointer
/*! @param prefix_cut_off says length of the prefix that is going to be omitted and
@param sufix_cut_off says the same about sufix.
*/
//////
/// Constructor with char pointer
///
/// @param prefix_cut_off says length of the prefix that is going to be omitted and
/// @param sufix_cut_off says the same about sufix.
String( const char* c,
int prefix_cut_off,
int sufix_cut_off = 0 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment