12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*
- 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. 2016
- 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
|