/* This software is subject to the license described in the License.txt file included with this software distribution. You may not use this file except in compliance with this license. Copyright (c) Dynastream Innovations Inc. 2014 All rights reserved. */ #include "types.h" #include "dsi_framer.hpp" ////////////////////////////////////////////////////////////////////////////////// // Public Class Functions ////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Default constructor. ///////////////////////////////////////////////////////////////// DSIFramer::DSIFramer() { pclSerial = (DSISerial*)NULL; } ///////////////////////////////////////////////////////////////// // Constructor. ///////////////////////////////////////////////////////////////// DSIFramer::DSIFramer(DSISerial *pclSerial_) { pclSerial = pclSerial_; } ///////////////////////////////////////////////////////////////// // Destructor. ///////////////////////////////////////////////////////////////// DSIFramer::~DSIFramer() { } #if 0 ///////////////////////////////////////////////////////////////// BOOL DSIFramer::WriteMessage(void *pvData_, USHORT usMessageSize_) { return FALSE; } #endif