blob: 7db55a1cf87f910089031cfea04ec677e21a910c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef STRINGRESULT_H
#define STRINGRESULT_H
/**
* @brief The StringResult class
*/
class StringResult
{
public:
StringResult();
};
#endif // STRINGRESULT_H
|