Luiza  v03-01
ProcessorLoader.h
1 #ifndef ProcessorLoader_h
2 #define ProcessorLoader_h 1
3 
4 #include "LuizaSTLTypes.h"
5 
6 #include <string>
7 #include <vector>
8 
9 namespace luiza{
10 
11 
12 
22 
23 
24  typedef std::vector<void*> LibVec ;
25 
26  public:
27 
28  ProcessorLoader( StringVec::const_iterator first, StringVec::const_iterator last ) ;
29 
30  virtual ~ProcessorLoader() ;
31 
32  bool failedLoading() { return _loadError; };
33 
34 
35  protected:
36 
37  LibVec _libs ;
38 
39  private:
40  bool _loadError;
41  };
42 
43 } // end namespace luiza
44 #endif
Definition: ProcessorLoader.h:21
Namespace for Luiza framework.
Definition: CCCollection.h:6