00001 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- 00002 * 00003 * This file is example code for XPLC (http://xplc.sourceforge.net/), 00004 * and is put into the public domain. 00005 */ 00006 00007 #ifndef __EXAMPLE_SIMPLE_H__ 00008 #define __EXAMPLE_SIMPLE_H__ 00009 00010 /* 00011 * This file should be available to client code. 00012 * 00013 * This is a "well-known" UUID that is used to get the component. We 00014 * say "well-known", because the assumption is that client code will 00015 * already know this, somehow (by including this file, for example). 00016 * 00017 * The "CID" suffix stands for "Component ID". This is a normal UUID, 00018 * there is nothing different except the name, but it helps to have 00019 * some context when discussing or documenting things. 00020 */ 00021 00022 static const UUID SimpleComponent_CID = {0x71c4067f, 0xaaa4, 0x4e6c, {0xa7, 0x07, 0x14, 0x38, 0xeb, 0x04, 0xb0, 0x7d}}; 00023 00024 #endif /* __EXAMPLE_SIMPLE_H__ */