Skip to content
Snippets Groups Projects
Commit 49cfbdb9 authored by Nina Džugasová's avatar Nina Džugasová
Browse files

Added comment to String constructor.

parent 204bbbcc
No related branches found
No related tags found
1 merge request!15Nina
...@@ -38,14 +38,15 @@ public: ...@@ -38,14 +38,15 @@ public:
//! Basic constructor //! Basic constructor
String(); String();
//! Constructor with char pointer //////
/*! @param prefix_cut_off says length of the prefix that is going to be omitted and /// Constructor with char pointer
@param sufix_cut_off says the same about sufix. ///
*/ /// @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, String( const char* c,
int prefix_cut_off = 0, int prefix_cut_off = 0,
int sufix_cut_off = 0 ); int sufix_cut_off = 0 );
String( char* c, String( char* c,
int prefix_cut_off = 0, int prefix_cut_off = 0,
int sufix_cut_off = 0 ); int sufix_cut_off = 0 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment