2001-12-24 03:51:06 +01:00
|
|
|
/*
|
|
|
|
* 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"
|
2003-01-16 18:47:10 +01:00
|
|
|
#include "../common/classes/alloc.h"
|
2001-12-24 03:51:06 +01:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Firebird
|
|
|
|
{
|
|
|
|
typedef std::basic_string<char, std::char_traits<char>,
|
|
|
|
Firebird::allocator<char> > string;
|
2002-07-05 17:00:26 +02:00
|
|
|
|
|
|
|
|
2001-12-24 03:51:06 +01:00
|
|
|
};
|
|
|
|
|
2002-07-05 17:00:26 +02:00
|
|
|
|
2001-12-24 03:51:06 +01:00
|
|
|
#endif // FB_STRING_H
|