Sign in
android
/
platform
/
ndk
/
06c762d797782f574e40a956613c4e19c504b6c1
/
.
/
tests
/
build
/
cmake
/
shared
/
shared.hpp
blob: fafc5414cbf5ef140705ec3d65233de1298b1293 [
file
] [
log
] [
blame
]
#ifndef
SHARED_HPP
#define
SHARED_HPP
#include
<string>
class
Shared
{
public
:
Shared
();
std
::
string
GetString
();
private
:
std
::
string
str
;
};
#endif