|
Revision 13041, 1.5 kB
(checked in by robert, 15 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | #include <osg/Notify> |
|---|
| 21 | #include "Registry.h" |
|---|
| 22 | |
|---|
| 23 | using namespace flt; |
|---|
| 24 | |
|---|
| 25 | Registry::Registry() |
|---|
| 26 | { |
|---|
| 27 | } |
|---|
| 28 | |
|---|
| 29 | Registry::~Registry() |
|---|
| 30 | { |
|---|
| 31 | } |
|---|
| 32 | |
|---|
| 33 | Registry* Registry::instance() |
|---|
| 34 | { |
|---|
| 35 | static Registry s_registry; |
|---|
| 36 | return &s_registry; |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | void Registry::addPrototype(int opcode, Record* prototype) |
|---|
| 40 | { |
|---|
| 41 | if (prototype==0L) |
|---|
| 42 | { |
|---|
| 43 | OSG_WARN << "Not a record." << std::endl; |
|---|
| 44 | return; |
|---|
| 45 | } |
|---|
| 46 | |
|---|
| 47 | if (_recordProtoMap.find(opcode) != _recordProtoMap.end()) |
|---|
| 48 | OSG_WARN << "Registry already contains prototype for opcode " << opcode << "." << std::endl; |
|---|
| 49 | |
|---|
| 50 | _recordProtoMap[opcode] = prototype; |
|---|
| 51 | } |
|---|
| 52 | |
|---|
| 53 | Record* Registry::getPrototype(int opcode) |
|---|
| 54 | { |
|---|
| 55 | RecordProtoMap::iterator itr = _recordProtoMap.find(opcode); |
|---|
| 56 | if (itr != _recordProtoMap.end()) |
|---|
| 57 | return (*itr).second.get(); |
|---|
| 58 | |
|---|
| 59 | return NULL; |
|---|
| 60 | } |
|---|