Docs
  1. ๐Ÿ 
  2. | Hyde Sample Docs
  3. | classes.cpp
  4. | class_example
  5. | overloaded
๐ŸŒ–

overloaded

Defined in <classes.cpp>
void overloaded()
(1) (deprecated)
void overloaded(const std::string & first)
(2)
void overloaded(const std::string &, class_example *, int)
(3)
void overloaded(const std::string & first, class_example * second, int third, bool fourth, std::size_t fifth)
(4)
void overloaded(const std::string & first, const std::string & second) volatile
(5)
void overloaded(const std::string & first, std::vector<int> second) const
(6)

(1)
void overloaded()

(deprecated)

a deprecated overload that takes zero parameters.

(2)
void overloaded(const std::string & first)

A series of overloaded functions.

an overloaded member function that takes one parameter.

Parameters
 
const std::string &
first

the first parameter of the first overload.

(3)
void overloaded(const std::string &, class_example *, int)

an overloaded member function that takes three unnamed parameters. Let it be known that Doxygen doesnโ€™t support documenting unnamed parameters at this time. There is a bug open on the issue, but as of this writing does not appear to be progressing.

Parameters
 
const std::string &
unnamed
 
class_example *
unnamed
 
int
unnamed

(4)
void overloaded(const std::string & first, class_example * second, int third, bool fourth, std::size_t fifth)

an overloaded member function that takes five parameters.

Parameters
 
const std::string &
first

the first parameter of the fourth overload.

 
class_example *
second

the second parameter of the fourth overload.

 
int
third

the third parameter of the fourth overload.

 
bool
fourth

the fourth parameter of the fourth overload.

 
std::size_t
fifth

the fifth parameter of the fourth overload.

(5)
void overloaded(const std::string & first, const std::string & second) volatile

Another brief describing one of the overloaded functions.

an overloaded member function that takes two parameters.

Parameters
 
const std::string &
first

the first parameter of the second overload.

 
const std::string &
second

the second parameter of the second overload.

(6)
void overloaded(const std::string & first, std::vector<int> second) const

another overloaded member function that takes two parameters.

Parameters
 
const std::string &
first

the first parameter of the third overload.

 
std::vector<int>
second

the second parameter of the third overload.

Hyde Example Docs โ€” Website showing a possible Jekyll-formatted hyde output.

Page owner(s): fosterbrereton Last updated 2024-10-01 15:42:11 +0000