source: ResearchApps/PHY/WARPLAB/WARPLab7/M_Code_Reference/classes/wl_transport.m

Last change on this file was 4332, checked in by welsh, 9 years ago

Code cleanup.

File size: 666 bytes
Line 
1%-------------------------------------------------------------------------
2% WARPLab Framework
3%
4% Copyright 2013, Mango Communications. All rights reserved.
5%           Distributed under the WARP license  (http://warpproject.org/license)
6%
7% Chris Hunter (chunter [at] mangocomm.com)
8% Patrick Murphy (murphpo [at] mangocomm.com)
9% Erik Welsh (welsh [at] mangocomm.com)
10%-------------------------------------------------------------------------
11
12classdef wl_transport < handle_light
13% Abstract class of for WARPLab transports
14
15    properties (Abstract = true)
16        hdr;
17    end
18
19    methods (Abstract = true)
20        reply = send
21    end
22end
Note: See TracBrowser for help on using the repository browser.