improved base and added PP defines KERNEL_UPSTREAM TESTING DEBUG
This commit is contained in:
14
um/test/math_module.h
Normal file
14
um/test/math_module.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef MATH_MODULE_H
|
||||
#define MATH_MODULE_H
|
||||
|
||||
class MathModule {
|
||||
public:
|
||||
MathModule(); // Constructor
|
||||
|
||||
int add(int a, int b);
|
||||
int subtract(int a, int b);
|
||||
int multiply(int a, int b);
|
||||
double divide(double a, double b);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user