Fix typo in license headers
[oweals/cde.git] / cde / programs / dtmail / include / DtMail / DtLanguages.hh
1 /*
2  *+SNOTICE
3  *
4  *
5  *      $XConsortium: DtLanguages.hh /main/4 1996/04/21 19:44:39 drk $
6  *
7  *      RESTRICTED CONFIDENTIAL INFORMATION:
8  *      
9  *      The information in this document is subject to special
10  *      restrictions in a confidential disclosure agreement bertween
11  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
12  *      document outside HP, IBM, Sun, USL, SCO, or Univel wihtout
13  *      Sun's specific written approval.  This documment and all copies
14  *      and derivative works thereof must be returned or destroyed at
15  *      Sun's request.
16  *
17  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
18  *
19  *+ENOTICE
20  */
21
22 #ifndef _DTLANGUAGES_HH
23 #define _DTLANGUAGES_HH
24
25 #include <stddef.h>
26
27 // The DtCPlusPlusAllocator class is provided to allow C applications
28 // to access the C++ implementation. C applications will not typically
29 // have access to new and delete so they are over ridden here.
30 //
31 class DtCPlusPlusAllocator {
32   public:
33     static void * operator new(size_t size);
34     static void operator delete(void * ptr);
35 };
36
37 #endif