00001 //----------------------------------------------------------------------------- 00002 // (c) 2009 by Basler Vision Technologies 00003 // Section: Vision Components 00004 // Project: GenApi 00005 // Author: Fritz Dierks 00006 // $Header$ 00007 // 00008 // License: This file is published under the license of the EMVA GenICam Standard Group. 00009 // A text file describing the legal terms is included in your installation as 'GenICam_license.pdf'. 00010 // If for some reason you are missing this file please contact the EMVA or visit the website 00011 // (http://www.genicam.org) for a full copy. 00012 // 00013 // THIS SOFTWARE IS PROVIDED BY THE EMVA GENICAM STANDARD GROUP "AS IS" 00014 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 00015 // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00016 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE EMVA GENICAM STANDARD GROUP 00017 // OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00018 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00019 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 00020 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 00021 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00022 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00023 // POSSIBILITY OF SUCH DAMAGE. 00024 //----------------------------------------------------------------------------- 00031 #ifndef GENAPI_PORTWRITELIST_H 00032 #define GENAPI_PORTWRITELIST_H 00033 00034 #include <GenApi/IPortRecorder.h> 00035 #include <list> 00036 00037 00038 #pragma warning ( push ) 00039 #pragma warning ( disable : 4251 ) // XXX needs to have dll-interface to be used by clients of class YYY 00040 00041 namespace GENAPI_NAMESPACE 00042 { 00043 00045 class GENAPI_DECL CPortWriteList : public IPortWriteList 00046 { 00047 public: 00049 CPortWriteList(); 00050 00052 ~CPortWriteList(); 00053 00054 /*---------------------------------------------------------------*/ 00055 // IPortWriteList 00056 /*---------------------------------------------------------------*/ 00057 00059 virtual void Write(const void *pBuffer, int64_t Address, int64_t Length); 00060 00062 virtual void Replay(IPort* pPort); 00063 00065 // Default = -1 00066 virtual void SetCookie(const int64_t Value); 00067 00069 virtual int64_t GetCookie(); 00070 00071 protected: 00073 typedef struct 00074 { 00075 int64_t Address; 00076 int64_t Length; 00077 char *pData; 00078 } WriteCommand_t; 00079 00081 std::list<WriteCommand_t> *m_pWriteCommands; 00082 00084 int64_t m_Cookie; 00085 }; 00086 00087 } 00088 00089 #pragma warning ( pop ) 00090 00091 #endif // ifndef GENAPI_PORTWRITELIST_H