summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/Res.cpp
blob: 60903bebe97495226c80332760c345bfb26b5f93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*  Project nGenEx
    Destroyer Studios LLC
    Copyright © 1997-2004. All Rights Reserved.

    SUBSYSTEM:    nGenEx.lib
    FILE:         Res.cpp
    AUTHOR:       John DiCamillo


    OVERVIEW
    ========
    Abstract Resource class
*/

#include "MemDebug.h"
#include "Res.h"

// +--------------------------------------------------------------------+

static int RESOURCE_KEY = 1;

Resource::Resource()
   : id((HANDLE) RESOURCE_KEY++)
{ }

Resource::~Resource()
{ }