annotate README-SDL.txt @ 1294:1760ceb23bc6
Date: Fri, 18 Feb 2005 20:49:35 +0200 (EET)
From: ville
Subject: [SDL] Changing, at least some, anonymous enums to named enums.
Howdy,
Could, some if not all, enums be named rather than being anonymous enums?
I ran into troubles with the enum describing event types in SDL_events.h.
The problem is that an anonymous enum cannot be used in C++ templates like
so:
enum { C };
template< typename T >
void
f( T ) {
}
f( C );
author |
Sam Lantinga <slouken@libsdl.org> |
date |
Sun, 29 Jan 2006 23:14:04 +0000 |
parents |
74212992fb08 |
children |
|
rev |
line source |
0
|
1
|
|
2 Please distribute this file with the SDL runtime environment:
|
|
3
|
|
4 The Simple DirectMedia Layer (SDL for short) is a cross-platfrom library
|
|
5 designed to make it easy to write multi-media software, such as games and
|
|
6 emulators.
|
|
7
|
|
8 The Simple DirectMedia Layer library source code is available from:
|
|
9 http://www.libsdl.org/
|
|
10
|
|
11 This library is distributed under the terms of the GNU LGPL license:
|
|
12 http://www.gnu.org/copyleft/lesser.html
|
|
13
|