OpenMining
0.01
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Friends
Macros
Pages
utils
percent.h
Go to the documentation of this file.
1
#ifndef percent_h
2
#define percent_h
3
4
namespace
utils
5
{
6
template
<
class
T>
7
T
percent
(T numerator, T denominator)
8
{
9
if
(denominator)
10
{
11
return
( (100 * numerator) / denominator);
12
}
13
14
return
0;
15
}
16
}
17
18
#endif
utils::percent
T percent(T numerator, T denominator)
Definition:
percent.h:7
Generated on Tue Feb 4 2014 11:05:43 for OpenMining by
1.8.6