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