a_application.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef __BARRY_A_APPLICATION_H__
00024 #define __BARRY_A_APPLICATION_H__
00025
00026 #include <vector>
00027
00028 #include "dll.h"
00029 #include "a_codsection.h"
00030
00031
00032 namespace Barry {
00033
00034 namespace ALX {
00035
00036
00037 class BXEXPORT Application : public CODSection
00038 {
00039 public:
00040 Application(void);
00041 Application(const xmlpp::SaxParser::AttributeList& attrs);
00042 virtual ~Application(void);
00043
00044 virtual void Dump(std::ostream &os) const;
00045 };
00046
00047
00048 inline std::ostream& operator<<(std::ostream& os, const Application& app)
00049 {
00050 app.Dump(os);
00051 return os;
00052 }
00053
00054
00055 }
00056
00057 }
00058
00059 #endif
00060
00061