77 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| /*********************************************************************************************
 | |
|  * Copyright 2005 - Volian Enterprises, Inc. All rights reserved.
 | |
|  * Volian Enterprises - Proprietary Information - DO NOT COPY OR DISTRIBUTE
 | |
|  * ------------------------------------------------------------------------------
 | |
|  * $Workfile: AppIndItm.cs $     $Revision: 1 $
 | |
|  * $Author: Kathy $   $Date: 3/08/05 1:50p $
 | |
|  *
 | |
|  * $History: AppIndItm.cs $
 | |
|  * 
 | |
|  * *****************  Version 1  *****************
 | |
|  * User: Kathy        Date: 3/08/05    Time: 1:50p
 | |
|  * Created in $/LibSource/VEObject
 | |
|  * Approval
 | |
|  *********************************************************************************************/
 | |
| using System;
 | |
| using System.Collections;
 | |
| 
 | |
| namespace VEObject
 | |
| {
 | |
| 	/// <summary>
 | |
| 	/// Summary description for AppIndItm.
 | |
| 	/// </summary>
 | |
| 	public class AppIndItem
 | |
| 	{
 | |
| 		public VEO_Proc Proc;
 | |
| 		public ArrayList ConflictList;
 | |
| 		public bool Checked;
 | |
| 
 | |
| 		public AppIndItem(VEO_Proc prc)
 | |
| 		{
 | |
| 			Checked=false;
 | |
| 			Proc = prc;
 | |
| 			ConflictList = new ArrayList();
 | |
| 		}
 | |
| 
 | |
| 		public void AddConflict(AppConflict aconflct)
 | |
| 		{
 | |
| 			ConflictList.Add(aconflct);
 | |
| 		}
 | |
| 
 | |
| 
 | |
| 	}
 | |
| 	
 | |
| 	public class ModLibDoc
 | |
| 	{
 | |
| 		public string LibFile;
 | |
| 		public int status;
 | |
| 		public int DocPages;
 | |
| 
 | |
| 		public ModLibDoc(string file, int stat)
 | |
| 		{
 | |
| 			LibFile = file;
 | |
| 			status=stat;
 | |
| 			DocPages=0;
 | |
| 		}
 | |
| 
 | |
| 	}
 | |
| 	public class ModRO
 | |
| 	{
 | |
| 		public string roid;
 | |
| 		public bool IsImage;
 | |
| 		public string Val1;
 | |
| 		public string Val2;
 | |
| 		public bool IsUsed;
 | |
| 
 | |
| 		public ModRO(string r, bool im, string v1, string v2)
 | |
| 		{
 | |
| 			roid = r;
 | |
| 			IsImage = im;
 | |
| 			Val1 = v1;
 | |
| 			Val2 = v2;
 | |
| 			IsUsed=false;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| }
 |