File: simple.h

package info (click to toggle)
xplc 0.3.13-12.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,536 kB
  • sloc: sh: 2,739; cpp: 2,697; ansic: 1,127; makefile: 64; perl: 6
file content (24 lines) | stat: -rw-r--r-- 870 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 *
 * This file is example code for XPLC (http://xplc.sourceforge.net/),
 * and is put into the public domain.
 */

#ifndef __EXAMPLE_SIMPLE_H__
#define __EXAMPLE_SIMPLE_H__

/*
 * This file should be available to client code.
 *
 * This is a "well-known" UUID that is used to get the component. We
 * say "well-known", because the assumption is that client code will
 * already know this, somehow (by including this file, for example).
 *
 * The "CID" suffix stands for "Component ID". This is a normal UUID,
 * there is nothing different except the name, but it helps to have
 * some context when discussing or documenting things.
 */

static const UUID SimpleComponent_CID = {0x71c4067f, 0xaaa4, 0x4e6c, {0xa7, 0x07, 0x14, 0x38, 0xeb, 0x04, 0xb0, 0x7d}};

#endif /* __EXAMPLE_SIMPLE_H__ */