1 /*****************************************************************************
2 
3         PlaneProcMode.h
4         Author: Laurent de Soras, 2011
5 
6 --- Legal stuff ---
7 
8 This program is free software. It comes without any warranty, to
9 the extent permitted by applicable law. You can redistribute it
10 and/or modify it under the terms of the Do What The Fuck You Want
11 To Public License, Version 2, as published by Sam Hocevar. See
12 http://sam.zoy.org/wtfpl/COPYING for more details.
13 
14 *Tab=3***********************************************************************/
15 
16 
17 
18 #if ! defined (vsutl_PlaneProcMode_HEADER_INCLUDED)
19 #define	vsutl_PlaneProcMode_HEADER_INCLUDED
20 
21 #if defined (_MSC_VER)
22 	#pragma once
23 	#pragma warning (4 : 4250)
24 #endif
25 
26 
27 
28 /*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
29 
30 
31 
32 namespace vsutl
33 {
34 
35 
36 
37 enum PlaneProcMode
38 {
39 	PlaneProcMode_FILL = 0,
40 	PlaneProcMode_GARBAGE,
41 	PlaneProcMode_COPY1,
42 	PlaneProcMode_PROCESS,
43 	PlaneProcMode_COPY2,
44 	PlaneProcMode_COPY3,
45 
46 	PlaneProcMode_NBR_ELT
47 
48 };	// class PlaneProcMode
49 
50 
51 
52 }	// namespace vsutl
53 
54 
55 
56 #endif	// vsutl_PlaneProcMode_HEADER_INCLUDED
57 
58 
59 
60 /*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
61