Mercurial > hg > ltpda
comparison m-toolbox/classes/+utils/+const/@msg/msg.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % MSG class that defines constants for different message levels. | |
2 % | |
3 % Supported message levels | |
4 % | |
5 % OFF = -1; | |
6 % IMPORTANT = 0; | |
7 % MNAME = 1; % Show AO method names | |
8 % PROC1 = 2; % AO processing 1 | |
9 % PROC2 = 3; % AO processing 2 | |
10 % PROC3 = 4; % AO processing 3 | |
11 % PROC4 = 5; % AO processing 4 | |
12 % PROC5 = 6; % AO processing 5 | |
13 % OMNAME = 7; % Other classes method names | |
14 % OPROC1 = 8; % Other classes processing 1 | |
15 % OPROC2 = 9; % Other classes processing 2 | |
16 % OPROC3 = 10; % Other classes processing 3 | |
17 % OPROC4 = 11; % Other classes processing 4 | |
18 % OPROC5 = 12; % Other classes processing 5 | |
19 % | |
20 % M Hewitson 08-08-08 | |
21 % | |
22 % $Id: msg.m,v 1.4 2010/08/26 14:00:29 ingo Exp $ | |
23 % | |
24 | |
25 classdef msg | |
26 properties (Constant = true) | |
27 OFF = -1; | |
28 IMPORTANT = 0; | |
29 MNAME = 1; % Show AO method names | |
30 PROC1 = 2; % AO processing 1 | |
31 PROC2 = 3; % AO processing 2 | |
32 PROC3 = 4; % AO processing 3 | |
33 PROC4 = 5; % AO processing 4 | |
34 PROC5 = 6; % AO processing 5 | |
35 OMNAME = 7; % Other classes method names | |
36 OPROC1 = 8; % Other classes processing 1 | |
37 OPROC2 = 9; % Other classes processing 2 | |
38 OPROC3 = 10; % Other classes processing 3 | |
39 OPROC4 = 11; % Other classes processing 4 | |
40 OPROC5 = 12; % Other classes processing 5 | |
41 end | |
42 end |