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

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

Code cleanup.

File size: 968 bytes
RevLine 
[4332]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
[1948]12classdef wl_user_ext < handle_light
[1950]13   properties(Hidden = true,Constant = true)
14       GRP = 'user_extension';
15   end
[4332]16   
[1948]17   methods
18       function obj = wl_user_ext()
19           if(strcmp(class(obj),mfilename))
[2865]20               error('%s is not intended to be constructed directly',mfilename)
[1948]21           end
22       end
[4332]23       
[1948]24       function out = procCmd(obj,varargin);
25          out = [];
[2865]26          error('User extension failed to implement the ''procCmd'' method'); 
[1948]27       end
28   end
29end
Note: See TracBrowser for help on using the repository browser.