#ifndef _LIBRARY_UTILS_HPP_
#define _LIBRARY_UTILS_HPP_

// ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp"

// ------------------------------------------------------------------------------------------------
namespace SqMod {

/* ------------------------------------------------------------------------------------------------
 *
*/
class Blob
{
    /* --------------------------------------------------------------------------------------------
     *
    */
    Blob(const Blob &);

    /* --------------------------------------------------------------------------------------------
     *
    */
    Blob & operator = (const Blob &);

public:

    /* --------------------------------------------------------------------------------------------
     *
    */
    Blob();

    /* --------------------------------------------------------------------------------------------
     *
    */
    ~Blob();
    
};

} // Namespace:: SqMod

#endif // _LIBRARY_UTILS_HPP_