open-license-manager
2014-04-21 0288790e61dec962f43b4ebf4a4fa3057dbd2d02
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * os-dependent.hpp
 *
 *  Created on: Mar 29, 2014
 *      Author: devel
 */
 
#ifndef OS_DEPENDENT_CPP_
#define OS_DEPENDENT_CPP_
 
/* deprecated: all os dependent functions have been implemented in C*/
#include "os.h"
 
namespace license {
using namespace std;
 
 
 
class OsFunctions {
public:
 
    static string getModuleName();
    //use system dependent methods to verify signature
    static bool verifySignature(const char * stringToVerify,
            const char* signature);
 
};
 
}
 
#endif /* OS_DEPENDENT_HPP_ */