moved format into Keywords namespace

This commit is contained in:
Aleksandar Fabijanic 2008-03-26 15:21:18 +00:00
parent 6827e13c0f
commit 1d7188d78e

View File

@ -134,6 +134,9 @@ inline const std::string& RowFormatter::postfix() const
}
namespace Keywords {
template <typename T>
inline T* format(const T& formatter)
/// Utility function used to pass formatter to the statement.
@ -143,6 +146,9 @@ inline T* format(const T& formatter)
}
} // namespace Keywords
typedef SharedPtr<RowFormatter> RowFormatterPtr;