ofen/include/of_str.h

16 lines
177 B
C
Raw Normal View History

2024-11-14 16:04:54 +08:00
#ifndef OFEN_STRING_HEADER
#define OFEN_STRING_HEADER
#include <string>
namespace ofen {
class COfStr
{
public:
COfStr();
~COfStr();
};
}; // namespace ofen
#endif