Click here to Skip to main content
15,887,585 members
Articles / Desktop Programming / MFC

The Ultimate Toolbox Home Page

Rate me:
Please Sign up or sign in to vote.
4.97/5 (141 votes)
25 Aug 2007CPOL13 min read 3.2M   91.4K   476  
The Ultimate Toolbox is now Open Source
// ==========================================================================
// 					Class Specification : COXBlob
// ==========================================================================

// Header file : OXBlob.h

// This software along with its related components, documentation and files ("The Libraries")
// is � 1994-2007 The Code Project (1612916 Ontario Limited) and use of The Libraries is
// governed by a software license agreement ("Agreement").  Copies of the Agreement are
// available at The Code Project (www.codeproject.com), as part of the package you downloaded
// to obtain this file, or directly from our office.  For a copy of the license governing
// this software, you may contact us at legalaffairs@codeproject.com, or by calling 416-849-8900.
                         
// //////////////////////////////////////////////////////////////////////////

// Properties:
//	NO	Abstract class (does not have any objects)
//	YES	Derived from CByteArray

//	NO	Is a Cwnd.                     
//	NO	Two stage creation (constructor & Create())
//	NO	Has a message map
//	NO	Needs a resource (template)

//	NO	Persistent objects (saveable on disk)      
//	NO	Uses exceptions

// //////////////////////////////////////////////////////////////////////////

// Desciption :         
//	This class is an extension of CByteArray and it can by used
//	to contain a Binary Large Object

// Remark:

// Prerequisites (necessary conditions):

/////////////////////////////////////////////////////////////////////////////

#ifndef __OXBLOB_H__
#define __OXBLOB_H__

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

#include "OXDllExt.h"

#include "OXVariant.h"


class OX_CLASS_DECL COXBlob : public CByteArray
{
DECLARE_DYNAMIC(COXBlob);

// Data members -------------------------------------------------------------
public:
protected:

private:
	
// Member functions ---------------------------------------------------------
public:

	// Constructors
	COXBlob();
	COXBlob(const COXBlob& blobSrc);
	COXBlob(const CByteArray& arrSrc);
	COXBlob(const CLongBinary& lbSrc);

	COXBlob(const VARIANT& varSrc);
	COXBlob(LPCVARIANT pSrc);
	COXBlob(const COleVariant& varSrc);
	COXBlob(const COXVariant& varSrc);

	// Assignemnt operators
	COXBlob& operator=(const COXBlob& blobSrc);
	COXBlob& operator=(const CByteArray& arrSrc);
	COXBlob& operator=(const CLongBinary& lbSrc);

	COXBlob& operator=(const VARIANT& varSrc);
	COXBlob& operator=(LPCVARIANT pSrc);
	COXBlob& operator=(const COleVariant& varSrc);
	COXBlob& operator=(const COXVariant& varSrc);

	BOOL ReadRaw(LPCTSTR pszPath);
	// --- In  : pszPath : The full path specification
	// --- Out : 
	// --- Returns : Whether it succeeded or not
	// --- Effect : Reads data from the specified file into this object

	BOOL WriteRaw(LPCTSTR pszPath);
	// --- In  : pszPath : The full path specification
	// --- Out : 
	// --- Returns : Whether it succeeded or not
	// --- Effect : Writes the data of this object to the specified file

	// Destructor
	virtual ~COXBlob();
	// --- In  :
	// --- Out : 
	// --- Returns :
	// --- Effect : Destructor of the object

protected:
	BOOL CopyVariant(LPCVARIANT pSrc);

private:
                   
};

#include "OXBlob.inl"

#endif // __OXBLOB_H__
// ==========================================================================

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
In January 2005, David Cunningham and Chris Maunder created TheUltimateToolbox.com, a new group dedicated to the continued development, support and growth of Dundas Software’s award winning line of MFC, C++ and ActiveX control products.

Ultimate Grid for MFC, Ultimate Toolbox for MFC, and Ultimate TCP/IP have been stalwarts of C++/MFC development for a decade. Thousands of developers have used these products to speed their time to market, improve the quality of their finished products, and enhance the reliability and flexibility of their software.
This is a Organisation

476 members

Comments and Discussions