17 lines
181 B
C++
17 lines
181 B
C++
#ifndef YP_LIB_TOOLS_H
|
|
#define YP_LIB_TOOLS_H
|
|
|
|
|
|
namespace Yp {
|
|
namespace Lib {
|
|
|
|
class Tools
|
|
{
|
|
public:
|
|
Tools();
|
|
};
|
|
|
|
} // namespace Lib
|
|
} // namespace Yp
|
|
|
|
#endif // YP_LIB_TOOLS_H
|