00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _allup_impl_hh
00019 #define _allup_impl_hh
00020
00021 #include <map.h>
00022 #include <string>
00023
00024 #include "AllupS.h"
00025
00026
00027
00028
00029
00030
00031 class AllupImpl : public virtual POA_edu::utah::pces::Allup
00032 {
00033
00034 public:
00035
00036
00037
00038
00039 AllupImpl(void);
00040
00041
00042
00043
00044 virtual ~AllupImpl(void);
00045
00046
00047 virtual edu::utah::pces::FactoryLibrary_ptr OpenLibrary(const char *name)
00048 throw (edu::utah::pces::NoSuchLibrary,
00049 CORBA::SystemException);
00050
00051
00052 virtual edu::utah::pces::FactoryLibraryList *Libraries(void)
00053 throw (CORBA::SystemException);
00054
00055
00056 virtual void Shutdown(void)
00057 throw (CORBA::SystemException);
00058
00059 private:
00060
00061
00062
00063
00064 typedef map<string, edu::utah::pces::FactoryLibrary_var> library_map_t;
00065
00066
00067
00068
00069 library_map_t ai_Libraries;
00070
00071 };
00072
00073 #endif