Various C++ Examples (including IPC)
Version: 1.0.0
|
simple overloading example More...
#include <stdio.h>
Go to the source code of this file.
Functions | |
int | thing1 () |
int | thing1 (int i) |
double | thing2 () |
double | thing2 (int i) |
int | main (int argc, char **argv) |
simple overloading example
Definition in file overload.cc.
int main | ( | int | argc, |
char ** | argv | ||
) |
Definition at line 37 of file overload.cc.
References thing1(), and thing2().
int thing1 | ( | ) |
Definition at line 12 of file overload.cc.
Referenced by main().
int thing1 | ( | int | i | ) |
Definition at line 18 of file overload.cc.
double thing2 | ( | ) |
Definition at line 24 of file overload.cc.
Referenced by main().
double thing2 | ( | int | i | ) |
Definition at line 29 of file overload.cc.