00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Side Effects Software Inc 00008 * 123 Front Street West, Suite 1401 00009 * Toronto, Ontario 00010 * Canada M5J 2M2 00011 * 416-504-9876 00012 * 00013 * NAME: OP_OTLLicenseType.h ( OTL Library, C++) 00014 */ 00015 00016 #ifndef __OP_OTLLicenseType__ 00017 #define __OP_OTLLicenseType__ 00018 00019 #include "OP_API.h" 00020 00021 class UT_String; 00022 00023 // This enumeration describes the different license types that are available. 00024 enum OP_OTLLicenseType 00025 { 00026 OTL_LICENSE_NONE = 0, 00027 OTL_LICENSE_EXECUTE = 10, 00028 OTL_LICENSE_READONLY = 20, 00029 OTL_LICENSE_FULL = 30 00030 }; 00031 00032 OP_API extern void OPstringFromLicenseType(OP_OTLLicenseType licensetype, 00033 UT_String &licensetypestr); 00034 00035 #endif
1.5.9