]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/ole/uuid.h
gave default value of wxID_ANY to id parameter of wxStaticLine ctor as nobody uses...
[wxWidgets.git] / include / wx / msw / ole / uuid.h
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: ole/uuid.h
3// Purpose: encapsulates an UUID with some added helper functions
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 11.07.97
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows licence
10//
11// Notes: you should link your project with RPCRT4.LIB!
12///////////////////////////////////////////////////////////////////////////////
13
14#ifndef _WX_OLEUUID_H
15#define _WX_OLEUUID_H
16
17#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
18#pragma interface "uuid.h"
19#endif
20#include "wx/wxchar.h"
21// ------------------------------------------------------------------
22// UUID (Universally Unique IDentifier) definition
23// ------------------------------------------------------------------
24
25// ----- taken from RPC.H
26#ifndef UUID_DEFINED // in some cases RPC.H will be already
27 #ifdef __WIN32__ // included, so avoid redefinition
28 typedef struct
29 {
30 unsigned long Data1;
31 unsigned short Data2;
32 unsigned short Data3;
33 unsigned char Data4[8];
34 } UUID; // UUID = GUID = CLSID = LIBID = IID
35 #endif // WIN32
36#endif // UUID_DEFINED
37
38#ifndef GUID_DEFINED
39 typedef UUID GUID;
40 #define UUID_DEFINED // prevent redefinition
41#endif // GUID_DEFINED
42
43typedef unsigned char uchar;
44
45// ------------------------------------------------------------------
46// a class to store UUID and it's string representation
47// ------------------------------------------------------------------
48
49// uses RPC functions to create/convert Universally Unique Identifiers
50class WXDLLEXPORT Uuid
51{
52private:
53 UUID m_uuid;
54 wxUChar *m_pszUuid; // this string is alloc'd and freed by RPC
55 wxChar *m_pszCForm; // this string is allocated in Set/Create
56
57 void UuidToCForm();
58
59 // function used to set initial state by all ctors
60 void Init() { m_pszUuid = NULL; m_pszCForm = NULL; }
61
62public:
63 // ctors & dtor
64 Uuid() { Init(); }
65 Uuid(const wxChar *pc) { Init(); Set(pc); }
66 Uuid(const UUID &uuid) { Init(); Set(uuid); }
67 ~Uuid();
68
69 // copy ctor and assignment operator needed for this class
70 Uuid(const Uuid& uuid);
71 Uuid& operator=(const Uuid& uuid);
72
73 // create a brand new UUID
74 void Create();
75
76 // set value of UUID
77 bool Set(const wxChar *pc); // from a string, returns true if ok
78 void Set(const UUID& uuid); // from another UUID (never fails)
79
80 // accessors
81 operator const UUID*() const { return &m_uuid; }
82 operator const wxChar*() const { return (wxChar *)(m_pszUuid); }
83
84 // return string representation of the UUID in the C form
85 // (as in DEFINE_GUID macro)
86 const wxChar *CForm() const { return m_pszCForm; }
87};
88
89#endif //_WX_OLEUUID_H