mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
git-subtree-dir: login_server git-subtree-mainline: 09ebb40de21084bb10ee466429d900a5e757d349 git-subtree-split: ca71af1817a801db9a108c205bc298250d498c4b
19 lines
377 B
C++
19 lines
377 B
C++
#ifndef __GRADIDO_LOGIN_SERVER_TEST_HASH_
|
|
#define __GRADIDO_LOGIN_SERVER_TEST_HASH_
|
|
|
|
#include "Test.h"
|
|
|
|
class TestHash : public Test
|
|
{
|
|
public:
|
|
TestHash();
|
|
~TestHash();
|
|
//! \return 0 if init okay, else return != 0
|
|
int init();
|
|
|
|
//! \return 0 if okay, else return != 0
|
|
int test();
|
|
const char* getName() { return "TestHash"; };
|
|
};
|
|
|
|
#endif //__GRADIDO_LOGIN_SERVER_TEST_HASH_
|