mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-02-01 16:40:38 +01:00
25 lines
431 B
C
25 lines
431 B
C
|
/*
|
||
|
* fb_string.h
|
||
|
* firebird_test
|
||
|
*
|
||
|
* Created by john on Fri Dec 14 2001.
|
||
|
* Copyright (c) 2001 __MyCompanyName__. All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef FB_STRING_H
|
||
|
#define FB_STRING_H
|
||
|
|
||
|
#include "../include/fb_types.h"
|
||
|
#include "../common/memory/allocators.h"
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace Firebird
|
||
|
{
|
||
|
typedef std::basic_string<char, std::char_traits<char>,
|
||
|
Firebird::allocator<char> > string;
|
||
|
};
|
||
|
|
||
|
#endif // FB_STRING_H
|