Revision 1378,
328 bytes
checked in by giegl, 18 years ago
(diff) |
GTPD - Jungle Rumble - integrate into GTP SVN structure
|
Line | |
---|
1 | #pragma once
|
---|
2 |
|
---|
3 | class SharedResource
|
---|
4 | {
|
---|
5 | public:
|
---|
6 | SharedResource(void);
|
---|
7 | ~SharedResource(void);
|
---|
8 |
|
---|
9 | void setResourceIdentifier(int _id);
|
---|
10 | int getResourceIdentifier();
|
---|
11 | bool isResourceAvailable();
|
---|
12 | void setResourceAvailable(bool _available);
|
---|
13 |
|
---|
14 | virtual void OnLostDevice() = 0;
|
---|
15 | protected:
|
---|
16 | int id;
|
---|
17 | bool available;
|
---|
18 | };
|
---|
Note: See
TracBrowser
for help on using the repository browser.