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 #ifndef _SEQUENCEBUILDER_HPP
00023 #define _SEQUENCEBUILDER_HPP
00024
00025 #include <xqilla/framework/XQillaExport.hpp>
00026 #include <xqilla/events/EventHandler.hpp>
00027
00028 #include <xercesc/util/XMemory.hpp>
00029
00030 class DynamicContext;
00031 class Sequence;
00032
00033 class XQILLA_API SequenceBuilder : public EventHandler, public XERCES_CPP_NAMESPACE_QUALIFIER XMemory
00034 {
00035 public:
00036 virtual ~SequenceBuilder() {}
00037
00038 virtual Sequence getSequence() const = 0;
00039 };
00040
00041 #endif